summaryrefslogtreecommitdiffstats
path: root/chrome/test
Commit message (Collapse)AuthorAgeFilesLines
* Add unittest for Gtk search engine manager dialog.mattm@chromium.org2009-08-271-0/+1
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/180012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24692 0039d316-1c4b-4281-b951-d872f2087c98
* Only allow in-process tests in few binaries.phajdan.jr@chromium.org2009-08-271-0/+7
| | | | | | | | | | | | And it is not the final set. The main goal of this patch is to prevent further regressions. TEST=none BUG=none Review URL: http://codereview.chromium.org/173547 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24644 0039d316-1c4b-4281-b951-d872f2087c98
* Skip ImporterTest.Firefox35Importer unit test again as it is still crashing ↵kuchhal@chromium.org2009-08-271-0/+3
| | | | | | | | | | Purify. BUG=19820 Review URL: http://codereview.chromium.org/180002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24634 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r24606-24607. The tree didn't like them. :(phajdan.jr@chromium.org2009-08-273-6/+3
| | | | | | | | TBR=darin Review URL: http://codereview.chromium.org/173574 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24608 0039d316-1c4b-4281-b951-d872f2087c98
* Mock the LinkDoctor for tests. Should greatly decrease ErrorPage test flakiness.phajdan.jr@chromium.org2009-08-273-3/+6
| | | | | | | | | | | Not getting rid of WaitForTitleMatching because I have to add few more calls to the automation framework (http://crbug.com/19395) to wait properly after navigating back and forward. TEST=Covered by ui_tests and browser_tests. http://crbug.com/18365, http://crbug.com/19361 Review URL: http://codereview.chromium.org/174179 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24606 0039d316-1c4b-4281-b951-d872f2087c98
* Update of the extension install UI:aa@chromium.org2009-08-2739-0/+299
| | | | | | | | | | | | | | | | | - Give the user more information about which hosts an extension can access. - Remove the red severe warning because it doesn't play well with themes and because it adds nothing when the other text is more specific. - Make the image a bit smaller. Also integrate this new idea with the silent/not-silent update flow. BUG=12129,12140,19582 Review URL: http://codereview.chromium.org/173463 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24599 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes a crash caused due to a call to NPP_DestroyStream occuring in the ↵ananta@chromium.org2009-08-272-0/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | context of NPP_NewStream. The plugin would invoke NPN_Evaluate to display an alert in the context of NewStream. This would cause the didFail IPC to be dispatched which would cause the plugin to invoke another call to NPP_NewStream which would repeat these steps and crash. The didFail call from the renderer did not honor the deferred load flag which we set in WebPluginImpl prior to dispatching stream IPCs to the plugin. Fix is to dispatch the didFail call when we receive an ack from the plugin indicating that it is ready to accept stream data. This fixes bug http://code.google.com/p/chromium/issues/detail?id=20063 The other change is in WebPluginImpl::TearDownPluginInstance, where we run through the list of resource clients and cancel them. We call didFail on these clients here, which occurs anyway through the PluginDestroyed code path. Bug=20063 Test=Convered by interactive UI test. Review URL: http://codereview.chromium.org/174383 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24593 0039d316-1c4b-4281-b951-d872f2087c98
* Fix memory leaks in Firefox impoter unittest.kuchhal@chromium.org2009-08-261-3/+0
| | | | | | | | | BUG=19820 TBR=erikkay Review URL: http://codereview.chromium.org/173546 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24564 0039d316-1c4b-4281-b951-d872f2087c98
* Second part of memory_test for Mac.paul@chromium.org2009-08-262-9/+52
| | | | | | | | | | | This CL implements the actual memory measurements. BUG=16434 (http://crbug.com/16434) TEST=memory_test should now run and report accurate memory numbers on Mac. Review URL: http://codereview.chromium.org/173454 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24549 0039d316-1c4b-4281-b951-d872f2087c98
* Fixes a string comparison bug in DeleteFolder.kuchhal@chromium.org2009-08-261-2/+3
| | | | | | | Review URL: http://codereview.chromium.org/174455 Patch from Ken Kania <kkania@google.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24532 0039d316-1c4b-4281-b951-d872f2087c98
* Attempt 2 at landing bookmark menus.sky@chromium.org2009-08-261-0/+14
| | | | | | | | | | | | | The build breakage was the result of a bad ifdef in MenuController, specifically around the OnKeyDown method. BUG=none TEST=none TBR=ben@chromium.org Review URL: http://codereview.chromium.org/173517 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24526 0039d316-1c4b-4281-b951-d872f2087c98
* With this change script can look out for password file if password was not ↵tejasshah@google.com2009-08-261-2/+12
| | | | | | | | supplied as a parameter. This change is required for buildbot slave security, as buildbot will call this script without password and can't store password for calling. Review URL: http://codereview.chromium.org/173500 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24516 0039d316-1c4b-4281-b951-d872f2087c98
* Reverts menu patch.sky@chromium.org2009-08-261-14/+0
| | | | | | | | | | BUG=none TEST=none TBR=ben@chromium.org Review URL: http://codereview.chromium.org/173508 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24509 0039d316-1c4b-4281-b951-d872f2087c98
* Avoids the use of ToWStringHack in a few places.evan@chromium.org2009-08-262-12/+11
| | | | | | | | | | BUG=None TEST=run app_unittests.exe, browser_tests.exe and selenium_tests.exe Review URL: http://codereview.chromium.org/173418 Patch from Thiago Farina <thiago.farina@gmail.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24504 0039d316-1c4b-4281-b951-d872f2087c98
* Gets bookmark menu working on linux. There are just a handful ofsky@chromium.org2009-08-261-0/+14
| | | | | | | | | | | | NOTIMPLEMENTEDs to resolve (initiating drags is the biggest remaining issue). I'll tackle the remaining issues separately. BUG=none TEST=make sure bookmark menus work well on windows still. Review URL: http://codereview.chromium.org/173431 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24501 0039d316-1c4b-4281-b951-d872f2087c98
* Fix the dates in the test profile history databases.deanm@chromium.org2009-08-265-0/+0
| | | | | | | | | | | These profiles were originally created on Windows, so they had 1601 epoch. Brett upgraded them during his Linux/Mac epoch fix, which incorrectly assumed they were 1970 epoch and added 369 years. Review URL: http://codereview.chromium.org/173492 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24471 0039d316-1c4b-4281-b951-d872f2087c98
* Copy upgraded typical_history database to the other theme profiles.deanm@chromium.org2009-08-264-0/+0
| | | | | | | Review URL: http://codereview.chromium.org/173484 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24460 0039d316-1c4b-4281-b951-d872f2087c98
* Updating the script to pass the port value as part of sync-url instead of ↵tejasshah@google.com2009-08-261-2/+1
| | | | | | | | separate parameter. Review URL: http://codereview.chromium.org/174503 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24452 0039d316-1c4b-4281-b951-d872f2087c98
* Fix another source of flakiness in ErrorPageTestphajdan.jr@chromium.org2009-08-263-8/+59
| | | | | | | | | | | | | | | | We need to wait for correct number of navigations when going back or forward to the LinkDoctor page. Re-enable previously disabled tests and remove the now-duplicate browser test. The test is still not very solid, because the LinkDoctor should be mocked. TEST=Covered by ui_tests. http://crbug.com/19361, http://crbug.com/19395 Review URL: http://codereview.chromium.org/174396 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24446 0039d316-1c4b-4281-b951-d872f2087c98
* Adds a new reliability crash to known_crashes.txt.yutak@chromium.org2009-08-261-0/+3
| | | | | | | | | BUG=20291 TBR=huanr TEST=none Review URL: http://codereview.chromium.org/173457 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24424 0039d316-1c4b-4281-b951-d872f2087c98
* Turn tips on by default, and turn off tip loading during UI testing.mirandac@chromium.org2009-08-262-6/+3
| | | | | | | | | BUG= none TEST= none Review URL: http://codereview.chromium.org/173444 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24418 0039d316-1c4b-4281-b951-d872f2087c98
* Convert internal time format to Windows 1601 epoch on Linux & Mac.brettw@chromium.org2009-08-261-0/+0
| | | | | | | | | | | Although we represent time internally starting from 1601, there are still things like time explosion that will not work before the year 1900. This limitation is the same as it was previously. BUG=14734 Review URL: http://codereview.chromium.org/173296 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24417 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce accesskeys for Chrome menus.mhm@chromium.org2009-08-261-0/+2
| | | | | | | | | | | Added ALT+E for Chrome Page Menu Added ALT+F for Chrome App Menu BUG=906 (http://crbug.com/906) TEST=Triggered ALT+A and ALT+P from the keyboard which successfully opened the corresponding menu. Review URL: http://codereview.chromium.org/174044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24410 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 24306 - Update known crashes filter with twonick@chromium.org2009-08-251-6/+0
| | | | | | | | | | | | | | | | | | | | | recent signatures that seem (afaik) not to be widespread. No bugs filed yet, since the issue tracker is up for maintenance. TBR=huanr TBR=nick@chromium.org (reverting because it's implicated in linux valgrind failures -- which I don't really believe -- and because huanr said that the underlying failure could be attributed to r24266, which has been since reverted) Review URL: http://codereview.chromium.org/173410 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24343 0039d316-1c4b-4281-b951-d872f2087c98
* add 128 icon to mappyerikkay@chromium.org2009-08-252-1/+2
| | | | | | | | | BUG=20236 TBR=aa Review URL: http://codereview.chromium.org/174436 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24318 0039d316-1c4b-4281-b951-d872f2087c98
* First part of getting memory_tests running on Mac.paul@chromium.org2009-08-255-27/+69
| | | | | | | | | | | This CL provides the scaffolding for subsequent changes. BUG=16434 (http://crbug.com/16434) TEST=Nothing yet. Review URL: http://codereview.chromium.org/174402 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24313 0039d316-1c4b-4281-b951-d872f2087c98
* Update known crashes filter with twonick@chromium.org2009-08-251-0/+6
| | | | | | | | | | | | recent signatures that seem (afaik) not to be widespread. No bugs filed yet, since the issue tracker is up for maintenance. TBR=huanr git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24306 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 24266 - This CL ensures that plugins always peek in the context of ↵ananta@chromium.org2009-08-252-49/+0
| | | | | | | | | | | | | | | | | | | | | outgoing sync calls. I will be watching the reliability test runs closely for any crashes which creep in due to reentrancies into plugins caused by this CL. This fixes bug http://code.google.com/p/chromium/issues/detail?id=15985 It is a touch tricky to implement a test case for this. Will add one hopefully in a subsequent CL Bug=15985 Test=Covered by UI test Review URL: http://codereview.chromium.org/173211 TBR=ananta@chromium.org Review URL: http://codereview.chromium.org/173384 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24296 0039d316-1c4b-4281-b951-d872f2087c98
* add icon to buildbot. increase poll delay to 4min. use a different URL for ↵erikkay@chromium.org2009-08-253-3/+4
| | | | | | | | | | | | json request. BUG=20236 TEST=none TBR=aa Review URL: http://codereview.chromium.org/174421 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24285 0039d316-1c4b-4281-b951-d872f2087c98
* This CL ensures that plugins always peek in the context of outgoing sync calls. ananta@chromium.org2009-08-252-0/+49
| | | | | | | | | | | | | | | I will be watching the reliability test runs closely for any crashes which creep in due to reentrancies into plugins caused by this CL. This fixes bug http://code.google.com/p/chromium/issues/detail?id=15985 It is a touch tricky to implement a test case for this. Will add one hopefully in a subsequent CL Bug=15985 Test=Covered by UI test Review URL: http://codereview.chromium.org/173211 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24266 0039d316-1c4b-4281-b951-d872f2087c98
* Addding reference build results for DOM perf testsasargent@chromium.org2009-08-251-0/+22
| | | | | | | | | | BUG=http://crbug.com/17577 TEST=none Review URL: http://codereview.chromium.org/171075 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24242 0039d316-1c4b-4281-b951-d872f2087c98
* Introduce "testFunction" to reduce boilerplate in extensions API tests.asargent@chromium.org2009-08-252-189/+204
| | | | | | | | | BUG=none TEST=none Review URL: http://codereview.chromium.org/173284 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24232 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Enable devtools sanity tests on Linux.pfeldman@chromium.org2009-08-253-4/+8
| | | | | | Review URL: http://codereview.chromium.org/174395 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24230 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r24223. Storage test is not working.aa@chromium.org2009-08-254-123/+0
| | | | | | TBR=mpcomplete@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24226 0039d316-1c4b-4281-b951-d872f2087c98
* Adds a new reliability crash to known_crashes.txt.yutak@chromium.org2009-08-251-0/+4
| | | | | | | | | BUG=http://crbug.com/20200 TBR=huanr TEST=none Review URL: http://codereview.chromium.org/173342 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24225 0039d316-1c4b-4281-b951-d872f2087c98
* Try again to commit r24174: Change the way json_schema.js is loaded.aa@chromium.org2009-08-252-4/+4
| | | | | | TBR=mpcomplete@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24224 0039d316-1c4b-4281-b951-d872f2087c98
* Force databases and localstorage to be enabled extensions.aa@chromium.org2009-08-254-0/+123
| | | | | | | | | | | | | | | | | | | | | | | | | We were already doing this, this change modifies the mechanism. Before we were relying on the presence of the --enable-extensions flag, but as we are getting ready to remove that on dev, we needed something else. This forces local storage and database to be enabled on chrome-extension:// pages. Also, change the way database enabling works in general to be more like the way local storage works, just for consistency. Will remove old, unnecessary WebKit API in an upstream change. erikkay: extensions stuff dumi: database stuff jorlow: local storage stuff BUG=19511 Review URL: http://codereview.chromium.org/173306 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24223 0039d316-1c4b-4281-b951-d872f2087c98
* Revert r24217.aa@chromium.org2009-08-251-1/+1
| | | | | | TBR=mpcomplete@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24218 0039d316-1c4b-4281-b951-d872f2087c98
* Change the way json_schema.js is loaded. This is required soaa@chromium.org2009-08-251-1/+1
| | | | | | | | | | that ChromeOS can use extension-style bindings without polluting the global scope of webpages. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=24174 Review URL: http://codereview.chromium.org/173263 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24217 0039d316-1c4b-4281-b951-d872f2087c98
* Revert breakage from r24174.aa@chromium.org2009-08-241-1/+1
| | | | | | TBR=tony@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24175 0039d316-1c4b-4281-b951-d872f2087c98
* Change the way json_schema.js is loaded. This is required soaa@chromium.org2009-08-241-1/+1
| | | | | | | | that ChromeOS can use extension-style bindings without polluting the global scope of webpages. Review URL: http://codereview.chromium.org/173263 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24174 0039d316-1c4b-4281-b951-d872f2087c98
* Cache images on theme install so startup does no image processing.mirandac@chromium.org2009-08-241-5/+8
| | | | | | | | | BUG= http://crbug.com/18768 TEST= none Review URL: http://codereview.chromium.org/174085 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24170 0039d316-1c4b-4281-b951-d872f2087c98
* Exposes a chrome.devtools object to extensions. This allows extensions to ↵mpcomplete@chromium.org2009-08-245-0/+115
| | | | | | | | | | call chrome.devtools.connect() to open up a Port by which it can receive devtools messages to implement the proposed perf trace extensions API documented here: http://code.google.com/p/chromium/wiki/ExtensionsPerfTraceAPI Review URL: http://codereview.chromium.org/159882 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24158 0039d316-1c4b-4281-b951-d872f2087c98
* Add permission to use the chrome.tabs object.finnur@chromium.org2009-08-241-1/+2
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/174337 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24129 0039d316-1c4b-4281-b951-d872f2087c98
* Update the version.finnur@chromium.org2009-08-241-1/+1
| | | | | | | | | | TBR=erikkay BUG=None TEST=None Review URL: http://codereview.chromium.org/174329 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24117 0039d316-1c4b-4281-b951-d872f2087c98
* Remove MaskSuperBlitter::~MaskSuperBlitter() from known_crashes.txt, fixedsenorblanco@chromium.org2009-08-241-3/+0
| | | | | | | | | | | as of Skia r330, Chromium r24033. BUG=http://crbug.com/17569 TEST=Reliability bot should stay green. Review URL: http://codereview.chromium.org/174320 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24110 0039d316-1c4b-4281-b951-d872f2087c98
* Make ShowModalDialogTest.BasicTest not flaky and re-enable it.phajdan.jr@chromium.org2009-08-242-3/+3
| | | | | | | | | TEST=Covered by ui_tests. http://crbug.com/17806 Review URL: http://codereview.chromium.org/174245 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24101 0039d316-1c4b-4281-b951-d872f2087c98
* Implement granular cross-origin XHR for extensions.aa@chromium.org2009-08-231-1/+1
| | | | | | | | | | | | | I left the temporary hack that allows all origins until we are ready to break everything all at once. Also, I still need to devise some way to test this. BUG=12129 Review URL: http://codereview.chromium.org/173166 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24089 0039d316-1c4b-4281-b951-d872f2087c98
* Added a plugin crash which occurs in NPP_NewStream to the known crashes ↵ananta@chromium.org2009-08-231-0/+4
| | | | | | | | | | | | | | | list. This has been occuring consistently on the recent reliability test runs. Logged a bug to track this http://code.google.com/p/chromium/issues/detail?id=20063 A fix for this is in the works. Bug=20063 TBR=huanr Review URL: http://codereview.chromium.org/173258 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24088 0039d316-1c4b-4281-b951-d872f2087c98
* New images for complex_theme startup tests, to accommodate disk caching change.mirandac@chromium.org2009-08-228-0/+0
| | | | | | | | | BUG= none TEST= none Review URL: http://codereview.chromium.org/174307 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24081 0039d316-1c4b-4281-b951-d872f2087c98