summaryrefslogtreecommitdiffstats
path: root/webkit
Commit message (Collapse)AuthorAgeFilesLines
* Update webkit to 65710johnnyg@chromium.org2010-08-201-0/+2
| | | | | | | | | | BUG=none TEST=none TBR=rolandsteiner Review URL: http://codereview.chromium.org/3167029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56809 0039d316-1c4b-4281-b951-d872f2087c98
* Convert FormatBytes to string16.evan@chromium.org2010-08-191-1/+1
| | | | | | | | | | I considered ASCII, but it's producing what is intended to be a human-readable string. For example, in theory the "bytes/s" annotation could be localized into a language where the "b" is non-ASCII. Review URL: http://codereview.chromium.org/3107021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56771 0039d316-1c4b-4281-b951-d872f2087c98
* Added CursorControl Pepper interface.neb@chromium.org2010-08-193-20/+110
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/3145024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56739 0039d316-1c4b-4281-b951-d872f2087c98
* Remove forward declares for ASCIIToUTF16 from string_util. All callers now usebrettw@chromium.org2010-08-191-0/+1
| | | | | | | | | | utf_string_conversions.h TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/3148019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56719 0039d316-1c4b-4281-b951-d872f2087c98
* Enable/Disable Spdy in benchmarking.lzheng@chromium.org2010-08-194-0/+25
| | | | | | | | Test=none Bug=52624 Review URL: http://codereview.chromium.org/3169022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56704 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: test shell should process frontendLoaded messages asynchronously.pfeldman@chromium.org2010-08-192-8/+18
| | | | | | Review URL: http://codereview.chromium.org/3180016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56686 0039d316-1c4b-4281-b951-d872f2087c98
* Disable Flip4Mac by default on the Macstuartmorgan@chromium.org2010-08-191-0/+8
| | | | | | | | | BUG=52661 TEST=Launch Chrome with Flip4Mac installed. It should show up in chrome://plugins as disabled, but be enableable. Relaunching should re-disable it. Review URL: http://codereview.chromium.org/3171018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56680 0039d316-1c4b-4281-b951-d872f2087c98
* FBTF: Remove unnecessary STL #includes from src/webkit.viettrungluu@chromium.org2010-08-1915-27/+6
| | | | | | | | | BUG=none TEST=builds Review URL: http://codereview.chromium.org/3122029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56655 0039d316-1c4b-4281-b951-d872f2087c98
* FBTF: Remove unneeded headers from base/ (part 6)thestig@chromium.org2010-08-1910-27/+35
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/3093013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56641 0039d316-1c4b-4281-b951-d872f2087c98
* Move bundled copy of sqlite one level deeper to better separate itphajdan.jr@chromium.org2010-08-182-2/+2
| | | | | | | | | | | | | from our patches, READMEs, etc. Also, add a shim header so we can use it for building with system sqlite. TEST=compile BUG=22208 Review URL: http://codereview.chromium.org/3108030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56619 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Convert FormatBytes to string16."evan@chromium.org2010-08-181-1/+1
| | | | | | This reverts commit r56603. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56608 0039d316-1c4b-4281-b951-d872f2087c98
* Convert FormatBytes to string16.evan@chromium.org2010-08-181-1/+1
| | | | | | | | | | I considered ASCII, but it's producing what is intended to be a human-readable string. For example, in theory the "bytes/s" annotation could be localized into a language where the "b" is non-ASCII. Review URL: http://codereview.chromium.org/3107021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56603 0039d316-1c4b-4281-b951-d872f2087c98
* Rename WebFileSystem to WebFileUtilities for corresponding WebKit API changes.kinuko@chromium.org2010-08-187-49/+50
| | | | | | | | | | | | This change depends on an upstream change (not yet rolled): http://trac.webkit.org/changeset/65482 BUG=52355 TESTS=existing tests (like ones under fast/files) should pass Review URL: http://codereview.chromium.org/3153015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56564 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 56539 - Added HostResolveImpl Requests and Jobs to log.mmenke@chromium.org2010-08-181-2/+1
| | | | | | | | | | | | | | | | | | ConnectJobs point to the requests, Requests point back to ConnectJobs and to the DNS lookup they were attached to, if any. Also CONNECT_JOBs are now identified by their host/port on the Requests list. BUG= 46844 TEST= Look at the net-internals screen. Review URL: http://codereview.chromium.org/3080034 TBR=eroman@chromium.org Review URL: http://codereview.chromium.org/3137022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56556 0039d316-1c4b-4281-b951-d872f2087c98
* Added HostResolveImpl Requests and Jobs to log.mmenke@chromium.org2010-08-181-1/+2
| | | | | | | | | | | | | | | ConnectJobs point to the requests, Requests point back to ConnectJobs and to the DNS lookup they were attached to, if any. Also CONNECT_JOBs are now identified by their host/port on the Requests list. BUG= 46844 TEST= Look at the net-internals screen. Review URL: http://codereview.chromium.org/3080034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56539 0039d316-1c4b-4281-b951-d872f2087c98
* Adds IDBKeyPath parser / extractor, and provides a mechanism to call it ↵bulach@chromium.org2010-08-183-0/+96
| | | | | | | | | | sandboxed. TEST=idbkeypathextractor_browsertests.cc Review URL: http://codereview.chromium.org/3043037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56524 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 65571:65599.yutak@chromium.org2010-08-181-10/+0
| | | | | | | | | | TBR=johnnyg BUG=none TEST=none Review URL: http://codereview.chromium.org/3152030 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56514 0039d316-1c4b-4281-b951-d872f2087c98
* Update test_expectations.txt.yutak@chromium.org2010-08-181-0/+6
| | | | | | | | | | TBR=johnnyg BUG=none TEST=none Review URL: http://codereview.chromium.org/3160023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56502 0039d316-1c4b-4281-b951-d872f2087c98
* Test server cleanup patch of death:phajdan.jr@chromium.org2010-08-174-78/+15
| | | | | | | | | | | | | | - reduce the number of different classes - clean up the internal code - modify the interface to expose less internal details (this will allow more flexibility with port numbers) TEST=many BUG=49680 Review URL: http://codereview.chromium.org/3080029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56405 0039d316-1c4b-4281-b951-d872f2087c98
* Pepper2 Graphics3D implementation - browser side.neb@chromium.org2010-08-1710-10/+1131
| | | | | | | | | BUG=46374 TEST=opengl demos work on Pepper2 Review URL: http://codereview.chromium.org/3020049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56401 0039d316-1c4b-4281-b951-d872f2087c98
* Pull new PPAPI. In particular, this converts mouse coordinates to floating ↵brettw@chromium.org2010-08-171-4/+4
| | | | | | | | | | point. TEST=none BUG=none Review URL: http://codereview.chromium.org/3135025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56304 0039d316-1c4b-4281-b951-d872f2087c98
* Remove the FLAKY attribute from ↵michaeln@chromium.org2010-08-171-1/+1
| | | | | | | | | | | AppCacheUpdateJobTest.MasterEntryBadManifest. A lot has changed since then. BUG=50657 TEST=AppCacheUpdateJobTest.MasterEntryBadManifest Review URL: http://codereview.chromium.org/3183012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56275 0039d316-1c4b-4281-b951-d872f2087c98
* GTTF: some more FRIEND_TEST_ALL_PREFIXESphajdan.jr@chromium.org2010-08-164-17/+24
| | | | | | | | | TEST=none BUG=44549 Review URL: http://codereview.chromium.org/3161021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56253 0039d316-1c4b-4281-b951-d872f2087c98
* Suppress a test failing after the last WebKit merge.japhet@chromium.org2010-08-161-0/+4
| | | | | | | | | | | BUG=none TEST=green webkit dbg(2) bots TBR=yutak,mpcomplete Review URL: http://codereview.chromium.org/3176015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56248 0039d316-1c4b-4281-b951-d872f2087c98
* TBR: joth@chromium.orgjoth@chromium.org2010-08-161-2/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56211 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 65318:65411.yutak@chromium.org2010-08-161-2/+4
| | | | | | | | | | TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/3119016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56203 0039d316-1c4b-4281-b951-d872f2087c98
* Fix QuartzCore.framework path. mark@chromium.org2010-08-151-1/+1
| | | | | | | | | Patch by Mihai Parparita <mihaip@chromium.org> TEST=rebuild Xcode projects BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56162 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup Registry API: part 3.tfarina@chromium.org2010-08-141-3/+3
| | | | | | | | | | | | - Remove the default arguments from the constructor. - Add a empty constructor to handle the case of the default arguments were used. BUG=44644 TEST=trybots Review URL: http://codereview.chromium.org/3172009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56123 0039d316-1c4b-4281-b951-d872f2087c98
* Revert all WebKit merges.yutak@chromium.org2010-08-131-38/+0
| | | | | | | | | | TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/3179013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56015 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 65185:65192.yutak@chromium.org2010-08-131-35/+35
| | | | | | | | | | TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/3152017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56008 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit merge 65180:65182.yutak@chromium.org2010-08-131-0/+38
| | | | | | | | | | TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/3145011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@56003 0039d316-1c4b-4281-b951-d872f2087c98
* Reenable bad-scheme-subframe.html which was rebaselined upstreamyurys@chromium.org2010-08-121-2/+0
| | | | | | | | BUG=51785 Review URL: http://codereview.chromium.org/3171006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55868 0039d316-1c4b-4281-b951-d872f2087c98
* GTK: fix decoding of custom cursor bytes.estade@chromium.org2010-08-121-11/+7
| | | | | | | | | | | The bytes of an SkBitmap are not directly translatable into those of a GdkPixbuf. Use the utility function we already have for converting between the pixel data of these two types. BUG=51816 TEST=see bug Review URL: http://codereview.chromium.org/3130008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55825 0039d316-1c4b-4281-b951-d872f2087c98
* FBTF: Start cleaning up net/erg@google.com2010-08-115-0/+5
| | | | | | | | | | | | url_request.h and http_response_info.h are some of the most included headers from net/ in chrome. Do what forward declaration we can in those headers. BUG=none TEST=none Review URL: http://codereview.chromium.org/3150003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55780 0039d316-1c4b-4281-b951-d872f2087c98
* Provide a profile.GetAppCacheService() accessor and add two helper methods ↵michaeln@chromium.org2010-08-111-1/+2
| | | | | | | | | | | to ChromeAppCacheService to override the default quota for an origin. BUG=49993 TESTS=existing tests apply Review URL: http://codereview.chromium.org/2819091 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55773 0039d316-1c4b-4281-b951-d872f2087c98
* Added linux-specific NP_Initialize function so that the plugin is properly ↵alokp@chromium.org2010-08-111-8/+39
| | | | | | | | initialized. Also fixed the mime-type to be consistent with that on windows and mac. Review URL: http://codereview.chromium.org/3129005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55743 0039d316-1c4b-4281-b951-d872f2087c98
* Add custom expectation for http/tests/loading/bad-scheme-subframe.htmlyurys@chromium.org2010-08-111-0/+2
| | | | | | | | BUG=51785 Review URL: http://codereview.chromium.org/3130006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55712 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: remove reference to InjectDispatch.js from test_shell_win.ccyurys@chromium.org2010-08-111-1/+0
| | | | | | | | TBR=loislo Review URL: http://codereview.chromium.org/3176003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55697 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: remove one more reference to InjectDispatch.jsyurys@chromium.org2010-08-111-1/+0
| | | | | | | | TBR=loislo Review URL: http://codereview.chromium.org/3124008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55695 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: remove usages of InjectDispatch.jsyurys@chromium.org2010-08-113-10/+1
| | | | | | Review URL: http://codereview.chromium.org/3125004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55687 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: DevTools should be closed in test_shell for non-inspector layout testsyurys@chromium.org2010-08-113-9/+5
| | | | | | | | BUG=51751 Review URL: http://codereview.chromium.org/3155005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55686 0039d316-1c4b-4281-b951-d872f2087c98
* Clamp the hotspot on custom cursors to the custom cursor image's dimensions.estade@chromium.org2010-08-113-0/+52
| | | | | | | | | | | | | | | | | Current behavior: windows chrome - respect the crazy hotspot linux chrome - crash mac chrome - fall back to normal cursor firefox - clamp the hotspot to the custom cursor image bounds. So this unifies the behavior of all 3 chrome platforms and matches firefox. BUG=51709 TEST=see bug for reduction Review URL: http://codereview.chromium.org/3168003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55669 0039d316-1c4b-4281-b951-d872f2087c98
* Whitespace change to trigger bots.viettrungluu@chromium.org2010-08-101-1/+1
| | | | | | | | TBR=viettrungluu@chromium.org Review URL: http://codereview.chromium.org/2694003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55526 0039d316-1c4b-4281-b951-d872f2087c98
* Test shell initializes OSMesa GL bindings.apatrick@chromium.org2010-08-092-0/+7
| | | | | | | | | | | This is in preparation for using OSMesa for running WebGL tests in test shell. TEST=try, view WebGL pages in test shell with OSMesa BUG=none Review URL: http://codereview.chromium.org/3040046 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55466 0039d316-1c4b-4281-b951-d872f2087c98
* Disable device motion in test shell.pfeldman@chromium.org2010-08-091-0/+1
| | | | | | Review URL: http://codereview.chromium.org/3098005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55388 0039d316-1c4b-4281-b951-d872f2087c98
* Add a mimetype to npapi_test_plugin so we pass a layout testtony@chromium.org2010-08-073-7/+11
| | | | | | | | | | | | | that expects each plugin to have at least one mime type. Also remove some test code that deletes a plugin during teardown. This is no longer needed and can break some tests that run later. BUG=51402 Review URL: http://codereview.chromium.org/3076041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55358 0039d316-1c4b-4281-b951-d872f2087c98
* Take 2: Copy the npapi pepper test plugin during the build so wetony@chromium.org2010-08-071-1/+67
| | | | | | | | | | | | | | | | don't have to do it when running the test. Remove all the code in the test for copying files since it's no longer needed. The difference from before is we only copy over the pepper test plugin on windows because it's the only platform with tests for it. On Linux, unloading the plugin was causing random crashes in tcmalloc. Review URL: http://codereview.chromium.org/3015064 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55357 0039d316-1c4b-4281-b951-d872f2087c98
* FBTF: Remove unneeded headers from base/ (part 5)thestig@chromium.org2010-08-072-5/+9
| | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/3041049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55349 0039d316-1c4b-4281-b951-d872f2087c98
* WebGL web preferences do not disable WebGL if already enabled.apatrick@chromium.org2010-08-061-1/+2
| | | | | | | | | | | This means WebGL is enabled in the test shell. TEST=try, layout tests BUG=none Review URL: http://codereview.chromium.org/3047051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55313 0039d316-1c4b-4281-b951-d872f2087c98
* Revert "Copy the npapi pepper test plugin during the build so we don't"tony@chromium.org2010-08-061-67/+1
| | | | | | | | This reverts commit r55235. Review URL: http://codereview.chromium.org/3090020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55287 0039d316-1c4b-4281-b951-d872f2087c98