summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* fixes for python 2.6 warnings in the testserver.thomasvl@chromium.org2009-03-061-7/+13
| | | | | | | BUG=8300 Review URL: http://codereview.chromium.org/40235 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11142 0039d316-1c4b-4281-b951-d872f2087c98
* Fix renderer hang that occurs when a RenderWidget with outstanding ↵jam@chromium.org2009-03-062-0/+10
| | | | | | | | | synchronous XHR requests is closed. Currently we cancel all the pending URLRequestJobs, however at that point it doesn't have a pointer to get to the SyncResourceHandler object. BUG=1575301 Review URL: http://codereview.chromium.org/39246 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11141 0039d316-1c4b-4281-b951-d872f2087c98
* Mark DigiNotar Root CA as EV.wtc@chromium.org2009-03-061-0/+7
| | | | | | | | R=ian BUG=7527 Review URL: http://codereview.chromium.org/40200 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11140 0039d316-1c4b-4281-b951-d872f2087c98
* I verified that the Visual C++ 2005 bug has been fixed inwtc@chromium.org2009-03-061-1/+1
| | | | | | | | | | Visual C++ 2008, so limit our workaround to Visual C++ 2005. R=eroman BUG=4387 Review URL: http://codereview.chromium.org/39225 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11139 0039d316-1c4b-4281-b951-d872f2087c98
* Added a test for testing standalone installer.anantha@chromium.org2009-03-065-34/+179
| | | | | | | | Automated the steps listed at: https://sites.google.com/a/google.com/chrome-pmo/standalone-installers/testing-standalone-installers Review URL: http://codereview.chromium.org/39150 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11138 0039d316-1c4b-4281-b951-d872f2087c98
* Reland r11118.darin@chromium.org2009-03-0612-187/+86
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/40240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11137 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline transform-absolute-in-positioned-container.levin@chromium.org2009-03-064-4/+4
| | | | | | | | | A rectangle on the lower left became smaller in width, and this new result better matches what nightly webkit produces. Review URL: http://codereview.chromium.org/40208 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11135 0039d316-1c4b-4281-b951-d872f2087c98
* Trying to match more closely DumpRenderTree to pass the layout test: ↵jcampan@chromium.org2009-03-062-3/+16
| | | | | | | | | | | | LayoutTests/fast/loader/null-request-after-willSendRequest.html See http://trac.webkit.org/browser/trunk/WebKitTools/DumpRenderTree/mac/ResourceLoadDelegate.mm willSendRequest method which is the code I duplicated. BUG=None TEST=layout test LayoutTests/fast/loader/null-request-after-willSendRequest.html Review URL: http://codereview.chromium.org/39232 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11134 0039d316-1c4b-4281-b951-d872f2087c98
* Fix event handling problem in WorkerContext caused by r10987.jianli@chromium.org2009-03-062-8/+21
| | | | | | Review URL: http://codereview.chromium.org/39217 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11133 0039d316-1c4b-4281-b951-d872f2087c98
* Test to see if we can reduce some crashes by deferring delegate destruction ↵ben@chromium.org2009-03-0628-34/+38
| | | | | | | | until WM_NCDESTROY. This involves adding a specific method to allow delegates to destroy themselves to WindowDelegate, and moving all delete this calls into implementations of that method (to allow delegates to still respond to WM_DESTROY which is legit). Review URL: http://codereview.chromium.org/40192 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11132 0039d316-1c4b-4281-b951-d872f2087c98
* Use common name for icns file to avoid case sensitivity issues withjrg@chromium.org2009-03-063-3/+3
| | | | | | | | | | | | | | | the filesystem and avoid the need for processing of Info.plist. Dup of svn log since rietveld doesn't like A+D: A + chrome/app/theme/chromium/app.icns D chrome/app/theme/chromium/chromium.icns M chrome/app/app-Info.plist M chrome/chrome.gyp Review URL: http://codereview.chromium.org/40238 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11131 0039d316-1c4b-4281-b951-d872f2087c98
* roll DEPS to pick up WebKit@11128darin@chromium.org2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11129 0039d316-1c4b-4281-b951-d872f2087c98
* Roll DEPS.mbelshe@google.com2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11127 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r11118 :(darin@chromium.org2009-03-0612-86/+187
| | | | | | | | TBR=dglazkov Review URL: http://codereview.chromium.org/39267 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11125 0039d316-1c4b-4281-b951-d872f2087c98
* Rename "ReadOnly" attribute to "v8ReadOnly".mbelshe@google.com2009-03-062-9/+9
| | | | | | | | | | | | | | | | Although this attribute is fairly self-describing, it is difficult to look at IDL and know what is V8 specific. Since this is something that we added, having it marked as such greatly helps when reviewing. Also rename: v8OnInstance -> V8OnInstance v8DisallowShadowing -> V8DisallowShadowing v8DoNotCheckSignature -> V8DoNotCheckSignature Review URL: http://codereview.chromium.org/39263 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11123 0039d316-1c4b-4281-b951-d872f2087c98
* WorkerWebKitClientImpl snuck up on me. arggh!darin@chromium.org2009-03-062-0/+11
| | | | | | | | | | | This implementation is similar to the one we have TestShell, which is to say that we don't support visited links in the Worker process. TBR=dglazkov Review URL: http://codereview.chromium.org/40230 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11121 0039d316-1c4b-4281-b951-d872f2087c98
* roll DEPS to pick up latest WebKitdarin@chromium.org2009-03-061-1/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11120 0039d316-1c4b-4281-b951-d872f2087c98
* More WebKit API action (chromium side)darin@chromium.org2009-03-0610-187/+75
| | | | | | | | R=dglazkov Review URL: http://codereview.chromium.org/39240 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11118 0039d316-1c4b-4281-b951-d872f2087c98
* Rebase a test that had been fixed already on windows.pinkerton@chromium.org2009-03-062-14/+21
| | | | | | Review URL: http://codereview.chromium.org/39261 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11116 0039d316-1c4b-4281-b951-d872f2087c98
* Get rid of IDL attribute "DontDelete". It is only used for ↵mbelshe@google.com2009-03-061-1/+1
| | | | | | | | | | "v8DisallowShadowing", so fold into that. Also, it causes confusion when comparing to JSC's "Deletable" attribute. Review URL: http://codereview.chromium.org/40210 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11113 0039d316-1c4b-4281-b951-d872f2087c98
* Rebase tests to match our network layer, not CFNetworkpinkerton@chromium.org2009-03-063-5/+11
| | | | | | Review URL: http://codereview.chromium.org/40223 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11112 0039d316-1c4b-4281-b951-d872f2087c98
* Pick up a newer gtm (w/ theme and color additions we'll need for ui)thomasvl@chromium.org2009-03-061-1/+1
| | | | | | Review URL: http://codereview.chromium.org/39255 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11111 0039d316-1c4b-4281-b951-d872f2087c98
* Mac rebases from adam's change (r11100).thomasvl@chromium.org2009-03-0619-16/+342
| | | | | | Review URL: http://codereview.chromium.org/39260 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11110 0039d316-1c4b-4281-b951-d872f2087c98
* - Developer tools frontend is served from chrom-ui://devtools/tools.htmlyurys@google.com2009-03-064-3/+20
| | | | | | | | | - Serve Web Inspector JS files from chrom-ui://devtools/ domain in addition to chrom-ui://inspector/. We cannot simply reuse "inspector" domain for now as we need different tab content types for console debugger and new developer tools front-end. When developer tools support all console debugger and web inspector features we will remove "inspector" domain from the source list. Review URL: http://codereview.chromium.org/40222 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11109 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline a Linux pixel test after r11100.deanm@chromium.org2009-03-062-1/+1
| | | | | | | | | The expected text dump is the same as (and shared with) Windows. This updates the pixel results. Review URL: http://codereview.chromium.org/39254 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11108 0039d316-1c4b-4281-b951-d872f2087c98
* Change the presubmit unittest with no code change. This is to trigger a test ↵nsylvain@chromium.org2009-03-061-4/+4
| | | | | | build git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11107 0039d316-1c4b-4281-b951-d872f2087c98
* fast/clip/nestedTransparencyClip.html has not failed for over 20ager@chromium.org2009-03-061-4/+0
| | | | | | | | | | | | | | builds on the buildbot and consistently passes on my local Linux build. Remove it from the test list so we will catch it if it starts failing again. TBR=pam BUG=8442 Review URL: http://codereview.chromium.org/39250 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11106 0039d316-1c4b-4281-b951-d872f2087c98
* Cleanup in {test_,}file_util_posix.ccphajdan.jr@chromium.org2009-03-062-6/+10
| | | | | | | | | | - DCHECK_EQ instead of DCHECK(foo == bar) - more detailed log error messages - add a comment why we use 0777 permissions for new dirs (umask should produce sane permissions) Review URL: http://codereview.chromium.org/40162 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11105 0039d316-1c4b-4281-b951-d872f2087c98
* Reverting 11102.phajdan.jr@chromium.org2009-03-062-10/+6
| | | | | | | | | | Used git svn dcommit instead of git cl dcommit by mistake. Reverting to re-commit properly. TBR=erikkay Review URL: http://codereview.chromium.org/40213 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11104 0039d316-1c4b-4281-b951-d872f2087c98
* Make CrashAwareSleep more accurate on POSIX (checking if the process exists).phajdan.jr@chromium.org2009-03-061-8/+20
| | | | | | Review URL: http://codereview.chromium.org/39185 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11103 0039d316-1c4b-4281-b951-d872f2087c98
* first cutphajdan.jr@chromium.org2009-03-062-6/+10
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11102 0039d316-1c4b-4281-b951-d872f2087c98
* Adding missing baselines for 11100abarth@chromium.org2009-03-064-0/+22
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11101 0039d316-1c4b-4281-b951-d872f2087c98
* Don't let file:// URLs script Web URLs.abarth@chromium.org2009-03-0614-21/+249
| | | | | | | | BUG=7986 R=finnur Review URL: http://codereview.chromium.org/39141 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11100 0039d316-1c4b-4281-b951-d872f2087c98
* Update DEPS to pull V8 from V8 trunk. There was an accidental updateager@chromium.org2009-03-061-1/+1
| | | | | | | | | of DEPS to pull from bleeding_edge. TBR=christian.plesner.hansen@gmail.com Review URL: http://codereview.chromium.org/40212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11099 0039d316-1c4b-4281-b951-d872f2087c98
* Forgot some entries.evan@chromium.org2009-03-061-2/+1
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11098 0039d316-1c4b-4281-b951-d872f2087c98
* Fix a bunch of Linux baselines.evan@chromium.org2009-03-0653-39/+434
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11097 0039d316-1c4b-4281-b951-d872f2087c98
* Another attempt to rebaseline rtl-ordering.htmldimich@google.com2009-03-064-12/+10
| | | | | | | | Previous was bad because I've played with the test itself and forgot to revert it before producing new baseline. Review URL: http://codereview.chromium.org/39244 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11095 0039d316-1c4b-4281-b951-d872f2087c98
* Add transform/3d to the ignore list since this feature is a work in progress ↵ben@chromium.org2009-03-061-0/+6
| | | | | | | | (according to smfr over at WebKit) and they don't even run these tests themselves on their buildbots. Review URL: http://codereview.chromium.org/37010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11094 0039d316-1c4b-4281-b951-d872f2087c98
* Don't run unload tests that hang the renderer in single-process mode, since ↵jam@chromium.org2009-03-061-0/+16
| | | | | | | | now the browser thread waits for the renderer thread on shutdown. Review URL: http://codereview.chromium.org/39245 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11093 0039d316-1c4b-4281-b951-d872f2087c98
* Rename browser_toolbar_view_gtk.{h,cc} to browser_toolbar_gtk.{h,cc}estade@chromium.org2009-03-064-6/+6
| | | | | | Review URL: http://codereview.chromium.org/39237 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11092 0039d316-1c4b-4281-b951-d872f2087c98
* Cast size_t to int for comparison with ReadFile return value.fbarchard@chromium.org2009-03-061-6/+8
| | | | | | | | | What gcc compile option checks sign on equality? I'd like to test this, even if try server does not. TBR=hclam Review URL: http://codereview.chromium.org/38008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11091 0039d316-1c4b-4281-b951-d872f2087c98
* YUV conversion code.fbarchard@chromium.org2009-03-067-1/+286
| | | | | | | This will be used for reference. Its reasonably simple, fast and high quality. Future versions will be optimized and should try to maintain similar quality. Longer term we may move this to Skia or attempt a hardware version. Review URL: http://codereview.chromium.org/40029 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11089 0039d316-1c4b-4281-b951-d872f2087c98
* Fix lifetime control for worker and worker context.jianli@chromium.org2009-03-063-5/+19
| | | | | | Review URL: http://codereview.chromium.org/40197 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11088 0039d316-1c4b-4281-b951-d872f2087c98
* Mark a test that needs an FTP implementation as failing on Mac/Linux.evan@chromium.org2009-03-061-0/+3
| | | | | | Review URL: http://codereview.chromium.org/40211 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11087 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed up MockFilterHost and MockPipeline to support tasks and callbacks.scherkus@chromium.org2009-03-065-106/+139
| | | | | | | | | | | | I changed the constructor to MockFilterHost to *not* create and initialize filters to allow for testing for conditions where create/initialize would fail. Also multiple MockFilterHosts can now share a common MockPipeline, which simulates how it is supposed to work. Finally, updated the VideoRendererBase tests to be deterministic and completely mocked and fixing failing unittests. BUG=8379 Review URL: http://codereview.chromium.org/39234 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11085 0039d316-1c4b-4281-b951-d872f2087c98
* Pull in new third_party/WebKit that fixes textarea-metrics.html.ojan@google.com2009-03-062-2/+1
| | | | | | Review URL: http://codereview.chromium.org/39241 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11084 0039d316-1c4b-4281-b951-d872f2087c98
* Remove a bunch of OS_WIN stuff that works fine on linux/mac.tc@google.com2009-03-062-53/+28
| | | | | | | Review URL: http://codereview.chromium.org/39164 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11083 0039d316-1c4b-4281-b951-d872f2087c98
* Add the proxy resolver perftest to GYP.ericroman@google.com2009-03-062-2/+3
| | | | | | | | BUG=2764 Review URL: http://codereview.chromium.org/39239 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11082 0039d316-1c4b-4281-b951-d872f2087c98
* Fix linux build breakjam@chromium.org2009-03-061-0/+2
| | | | git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11081 0039d316-1c4b-4281-b951-d872f2087c98
* temporarily disable rtl-ordering back.dimich@google.com2009-03-061-0/+1
| | | | | | Review URL: http://codereview.chromium.org/40209 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11080 0039d316-1c4b-4281-b951-d872f2087c98