summaryrefslogtreecommitdiffstats
path: root/webkit
Commit message (Collapse)AuthorAgeFilesLines
* Random style fixes in the database backend.brettw@chromium.org2009-10-291-58/+59
| | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/340004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30497 0039d316-1c4b-4281-b951-d872f2087c98
* First attempt at fixing a crash that occurs when we get into ↵japhet@chromium.org2009-10-291-2/+5
| | | | | | | | | | | | | | WebFrameLoaderClient::dispatchDidChangeLocationWithinPage() with an empty redirect chain. BUG=22205 TEST=none Review URL: http://codereview.chromium.org/326015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30496 0039d316-1c4b-4281-b951-d872f2087c98
* Ignore output to stdout that comes before we've started loading a test.ojan@chromium.org2009-10-292-3/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are tests that, for example, log errors to the console after calling notifyDone. In those cases, we'd get the following: TestDumpHere #EOF CONSOLE MESSAGE: ... NextTestDumpHere #EOF The console message would get lumped in with the next test. Now we get: #URL:LayoutTests/foo/bar.html TestDumpHere #EOF CONSOLE MESSAGE: ... #URL:LayoutTest/foo/baz.html NextTestDumpHere #EOF We only include the lines between URL and EOF in the test's actual output. All text between EOF and URL gets printed as a warning. Right now, that includes stacktraces from crashing tests. In a followon change, I'll make it so that we properly list crash stacktraces separately. See https://bugs.webkit.org/show_bug.cgi?id=30598 for one such test with this problem. Upstream doesn't see the flakiness we see here due to the following webkit bug: https://bugs.webkit.org/show_bug.cgi?id=30893. BUG=25355 Surprisingly, this passes on the try bots. So it just reduces flakiness. Review URL: http://codereview.chromium.org/315007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30489 0039d316-1c4b-4281-b951-d872f2087c98
* Move webworker{client}_impl.{h,cc} into webkit/api/srcyaar@chromium.org2009-10-2912-1227/+1203
| | | | | | Review URL: http://codereview.chromium.org/337057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30478 0039d316-1c4b-4281-b951-d872f2087c98
* Mark destroy-during-npp-new as flaky-crash on Macstuartmorgan@chromium.org2009-10-291-1/+1
| | | | | | | | | BUG=21841 TEST=Webkit Mac dbg 3 bot should be less flaky Review URL: http://codereview.chromium.org/339069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30469 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: wire up timeline panel to Chrome!pfeldman@chromium.org2009-10-291-0/+3
| | | | | | Review URL: http://codereview.chromium.org/343039 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30464 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Not all resources are displayed in Resources tabpfeldman@chromium.org2009-10-291-1/+1
| | | | | | | | BUG=26056 Review URL: http://codereview.chromium.org/342036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30458 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Implement raw cookies access for inspector.pfeldman@chromium.org2009-10-296-0/+172
| | | | | | Review URL: http://codereview.chromium.org/294025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30457 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Webkit merge broke DevToolsSanityTest.TestEnableResourcesTabpfeldman@chromium.org2009-10-291-1/+2
| | | | | | | | | BUG=26171 TBR=yurys Review URL: http://codereview.chromium.org/340035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30456 0039d316-1c4b-4281-b951-d872f2087c98
* LayoutTests/fast/overflow/002.html is not flaky anymore.yutak@chromium.org2009-10-291-1/+0
| | | | | | | | | | According to layout test flakiness dashboard, this test has not failed for recent 300+ runs. I'm not sure what fixed this, though. BUG=none TEST=none Review URL: http://codereview.chromium.org/338062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30453 0039d316-1c4b-4281-b951-d872f2087c98
* Assign issue numbers to three layout test failures.yutak@chromium.org2009-10-291-5/+5
| | | | | | | | | | No code change. BUG=26042,26044,26045 TEST=none Review URL: http://codereview.chromium.org/342016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30452 0039d316-1c4b-4281-b951-d872f2087c98
* Add some more lines to test_expectations.txt after last WebKit roll.rolandsteiner@chromium.org2009-10-291-2/+4
| | | | | | | | | | TBR=senorblanco BUG=none TEST=none Review URL: http://codereview.chromium.org/340033 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30451 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 50248:50258rolandsteiner@chromium.org2009-10-291-2/+9
| | | | | | | | | | TBR=senorblanco TEST=NONE BUG=NONE Review URL: http://codereview.chromium.org/339062 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30446 0039d316-1c4b-4281-b951-d872f2087c98
* Fix hardcoded path directory for linux and mac builds.dpranke@google.com2009-10-293-14/+4
| | | | | | | | | | | | (landing on behalf of kinuko@google.com). This fixes bug 17509 and bug 10371. BUG=17509,10371 R=dpranke@chromium.org TEST=LayoutTests/fast/loader/local-CSS-from-local.html git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30442 0039d316-1c4b-4281-b951-d872f2087c98
* Rollback of 30408yaar@chromium.org2009-10-2912-1203/+1227
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30411 0039d316-1c4b-4281-b951-d872f2087c98
* Move webworker{client}_impl.{h,cc} into webkit/api/srcyaar@chromium.org2009-10-2912-1227/+1203
| | | | | | Review URL: http://codereview.chromium.org/337057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30408 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit roll 50235:50245jorlow@chromium.org2009-10-291-1/+5
| | | | | | | | | | TBR=rolandsteiner TEST=none BUG=none Review URL: http://codereview.chromium.org/340026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30405 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit to 50235jorlow@chromium.org2009-10-281-0/+6
| | | | | | | | | | TBR=rolandsteiner TEST=none BUG=none Review URL: http://codereview.chromium.org/340022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30399 0039d316-1c4b-4281-b951-d872f2087c98
* Triage some failing tests. No actual fixes. :(tony@chromium.org2009-10-281-13/+10
| | | | | | | | Used the flakiness dashboard for most of this. Review URL: http://codereview.chromium.org/339052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30397 0039d316-1c4b-4281-b951-d872f2087c98
* Add a couple of failing/flaky tests to expectations.japhet@chromium.org2009-10-281-0/+2
| | | | | | | | | | BUG=none TEST=none TBR=jorlow Review URL: http://codereview.chromium.org/343025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30394 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline tests due to the change upstream: ↵victorw@chromium.org2009-10-289-7/+4
| | | | | | | | | | | | http://trac.webkit.org/changeset/49641 R=japhet BUG=25204 TEST=none Review URL: http://codereview.chromium.org/329026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30390 0039d316-1c4b-4281-b951-d872f2087c98
* Modify test driver output so that we report IMAGE, TEXT, and IMAGE+TEXTdpranke@google.com2009-10-281-9/+22
| | | | | | | | | | | | | failures individually (rather than lumping them into the deprecated FAIL bucket). R=ojan@chromium.org TEST=none BUG=http://crbug.com/24223 Review URL: http://codereview.chromium.org/338057 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30389 0039d316-1c4b-4281-b951-d872f2087c98
* Make GetURLForDebugging return a const GURL.tony@chromium.org2009-10-286-9/+9
| | | | | | Review URL: http://codereview.chromium.org/326003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30388 0039d316-1c4b-4281-b951-d872f2087c98
* Update test_expectations to reflect what the buildbots are actually doing.japhet@chromium.org2009-10-281-58/+11
| | | | | | | | | | | | | | | | | | | | | Add in some flaky tests and remove a bunch of plugin tests that are now passing on MAC. BUG=25880 BUG=20748 BUG=20438 BUG=11613 BUG=10438 BUG=10374 BUG=10354 BUG=10667 BUG=10351 BUG=10673 BUG=6735 TEST=layout test bots still green Review URL: http://codereview.chromium.org/345010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30370 0039d316-1c4b-4281-b951-d872f2087c98
* Oops...forgot the mac baseline.jorlow@chromium.org2009-10-281-0/+14
| | | | | | | | | | TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/338066 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30364 0039d316-1c4b-4281-b951-d872f2087c98
* Modify rebaseline tool to work with git and add rebaseline for vistavictorw@chromium.org2009-10-281-29/+66
| | | | | | | | | | R=ojan BUG=25858 TEST=rebaseline tool Review URL: http://codereview.chromium.org/345008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30361 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline string-conversion. V8 does "(){}" and JSC does "() {}"jorlow@chromium.org2009-10-282-3/+14
| | | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/339048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30357 0039d316-1c4b-4281-b951-d872f2087c98
* Clean up DOM Storage layout test expectations.jorlow@chromium.org2009-10-281-14/+19
| | | | | | | | | TEST=none BUG=none Review URL: http://codereview.chromium.org/337058 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30351 0039d316-1c4b-4281-b951-d872f2087c98
* Revert V8 update. It caused ui_test regressions on Windows and Mac.ager@chromium.org2009-10-282-2/+2
| | | | | | | | | | | Will investigate tomorrow. TBR=sgjesse@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/343020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30350 0039d316-1c4b-4281-b951-d872f2087c98
* Update V8 to version 1.3.17.ager@chromium.org2009-10-282-2/+2
| | | | | | | | | This version contains a number of bug fixes and better heap profiling support. Review URL: http://codereview.chromium.org/339044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30343 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Remove base/ dependencies from glue/devtoolspfeldman@chromium.org2009-10-2818-207/+237
| | | | | | | | BUG=24622,24597 Review URL: http://codereview.chromium.org/330029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30330 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed WebSocket related crash in webkit r50155ukai@chromium.org2009-10-281-7/+0
| | | | | | | | | | | | According to http://src.chromium.org/viewvc/chrome/trunk/src/webkit/tools/layout_tests/flakiness_dashboard.html, these tests didn't crash after webkit rolls. BUG=25399 TEST=these layout tests doesn't crash Review URL: http://codereview.chromium.org/342013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30322 0039d316-1c4b-4281-b951-d872f2087c98
* Roll to 50182jorlow@chromium.org2009-10-282-2/+14
| | | | | | | | | | TBR=rolandsteiner,kbr TEST=none BUG=none Review URL: http://codereview.chromium.org/339036 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30308 0039d316-1c4b-4281-b951-d872f2087c98
* Spoof UA as Chrome 1.0 when loading URLs from *.pointroll.com.dglazkov@chromium.org2009-10-281-8/+26
| | | | | | | | | | BUG=25934 TEST=none R=darin Review URL: http://codereview.chromium.org/340016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30306 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline media tests after http://trac.webkit.org/changeset/50063 .tony@chromium.org2009-10-2820-152/+63
| | | | | | | | The load event was changed to canplaythrough. Review URL: http://codereview.chromium.org/345004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30294 0039d316-1c4b-4281-b951-d872f2087c98
* This patch changes the call to enableResourceTracking on InspectorController ↵jamesr@chromium.org2009-10-281-1/+1
| | | | | | | | | | | | | to not trigger a page reload in the enabling of the APU agent. Patch by Jaime Yap (jaimeyap@google.com) TEST=none BUG=none Review URL: http://codereview.chromium.org/334022 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30288 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline LayoutTests/editing/execCommand/indent-paragraphs.html, which wastony@chromium.org2009-10-279-4/+138
| | | | | | | | | | | | | | | | | added by the merge. There's no pixel checked in upstream, but we match except for not showing image placeholders. The test has the following images: <img src="http://"> With GURL, the URL is rejected and it doesn't try to load the image. In KURL, the URL is "valid", but it fails to load an image so the place holder image is shown instead. Since that's not what the test is trying to test, just rebaseline. Review URL: http://codereview.chromium.org/342006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30283 0039d316-1c4b-4281-b951-d872f2087c98
* LayoutTests\http\tests\security\frameNavigation\xss-DENIED-plugin-navigation ↵japhet@chromium.org2009-10-272-1/+22
| | | | | | | | | | | .html is no longer timing out. Rebaseline to match win/linux expectations BUG=none TEST=green build Review URL: http://codereview.chromium.org/345003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30279 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting a two line merge error.yaar@chromium.org2009-10-271-2/+0
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30273 0039d316-1c4b-4281-b951-d872f2087c98
* Move glue/EditorClientImpl.h/cpp to webkit/api/srcyaar@chromium.org2009-10-278-1103/+1119
| | | | | | Review URL: http://codereview.chromium.org/330021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30270 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit 50158:10171jorlow@chromium.org2009-10-271-0/+2
| | | | | | | | | | TBR=rolandsteiner TEST=none BUG=none Review URL: http://codereview.chromium.org/337047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30268 0039d316-1c4b-4281-b951-d872f2087c98
* Update test_expectations for some flaky testsjaphet@chromium.org2009-10-271-7/+8
| | | | | | | | | | BUG=none TEST=none TBR=markus Review URL: http://codereview.chromium.org/341003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30264 0039d316-1c4b-4281-b951-d872f2087c98
* linux: add -fvisibility=hidden to build flagsevan@chromium.org2009-10-271-10/+16
| | | | | | | | | | | | We use this on OS X, so it shouldn't be harmful and it will fix a visibility issue that came up in http://groups.google.com/group/chromium-dev/browse_thread/thread/800bda968bdc8f29 BUG=17943 Review URL: http://codereview.chromium.org/332035 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30253 0039d316-1c4b-4281-b951-d872f2087c98
* s/FAIL/CRASH/jorlow@chromium.org2009-10-271-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30244 0039d316-1c4b-4281-b951-d872f2087c98
* Modify DataPacks so they can return RefCountedStaticMemory objects.erg@google.com2009-10-272-6/+6
| | | | | | | | | | (This is in preparation for a very large reworking of BrowserThemeProvider). BUG=http://crbug.com/21121 Review URL: http://codereview.chromium.org/338027 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30241 0039d316-1c4b-4281-b951-d872f2087c98
* Add more test expectations.jorlow@chromium.org2009-10-271-2/+10
| | | | | | | | | | TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/339028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30238 0039d316-1c4b-4281-b951-d872f2087c98
* Add test expectations.jorlow@chromium.org2009-10-271-0/+44
| | | | | | | | | | TBR=japhet BUG=none TEST=none Review URL: http://codereview.chromium.org/329038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30237 0039d316-1c4b-4281-b951-d872f2087c98
* Renames addItemToTimeline to addRecordToTimeline due to WebKitjamesr@chromium.org2009-10-271-1/+1
| | | | | | | | | | | | | change: https://bugs.webkit.org/show_bug.cgi?id=30785 Patch by: Kelly Norton (knorton@google.com) TEST=create extension, register for events, verify that they fire BUG=none Review URL: http://codereview.chromium.org/339016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30236 0039d316-1c4b-4281-b951-d872f2087c98
* Roll webkit to 50158jorlow@chromium.org2009-10-271-0/+6
| | | | | | | | | | TBR=rolandsteiner TEST=none BUG=none Review URL: http://codereview.chromium.org/338045 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30233 0039d316-1c4b-4281-b951-d872f2087c98
* Move a bunch of files into webkit/api/srcdarin@chromium.org2009-10-2725-1784/+2018
| | | | | | | | | | R=yaar BUG=25898,25899,25900,25901, TEST=none Review URL: http://codereview.chromium.org/338041 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30232 0039d316-1c4b-4281-b951-d872f2087c98