summaryrefslogtreecommitdiffstats
path: root/webkit
Commit message (Collapse)AuthorAgeFilesLines
* Update test_expectations for ↵jparent@chromium.org2009-09-291-7/+8
| | | | | | | | | | LayoutTests/editing/text-iterator/basic-iteration.html to point to a specific bug, rather than a generic merge bug. Also moves all editing tests that are failing due to unimplemented test shell features into one section of the expectations file. TEST=none BUG=23285,11322 Review URL: http://codereview.chromium.org/235049 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27459 0039d316-1c4b-4281-b951-d872f2087c98
* Updated layout test expectations for new failures.thestig@chromium.org2009-09-291-1/+3
| | | | | | | | BUG=21841,23306 TEST=none Review URL: http://codereview.chromium.org/245038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27455 0039d316-1c4b-4281-b951-d872f2087c98
* Fix an uninitialized memory error reported by valgrind.suzhe@chromium.org2009-09-291-2/+11
| | | | | | | | | | | In order to make valgrind happy, this CL changes WebKeyboardEvent::isSystemKey and WebMouseWheelEvent::scrollByPage to int type to make sure the size of WebKeyboardEvent and WebMouseWheelEvent align to a factor of 4 bytes strictly. BUG=22857: Uninitialized memory sent via IPC from RenderWidgetHostViewGtkWidget::KeyPressReleaseEvent() TEST=Run chrome with valgrind and input something or scroll the mouse wheel in a web page, valgrind should not complain uninitialized memory anymore. Review URL: http://codereview.chromium.org/235038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27451 0039d316-1c4b-4281-b951-d872f2087c98
* Fix layout test failues on linux/mac buildhclam@chromium.org2009-09-291-1/+1
| | | | | | | | TBR=scherkus Review URL: http://codereview.chromium.org/235048 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27446 0039d316-1c4b-4281-b951-d872f2087c98
* First step towards NaCl-Chrome integration:1. NaCl plugin becomes a built-in ↵gregoryd@google.com2009-09-292-24/+31
| | | | | | | | | | | plugin in Chrome and runs in the renderer process.2. Most of the changes are related to launching the NaCl process (that loads and runs the NaCl module) and establishing the initial communication between that process and the NaCl plugin.3. Command line flag "--internal-nacl" is required to enable the built-in NaCl plugin. NaCl still cannot run in Chrome sandbox, the flag automatically disables the sandboxCommitted: http://src.chromium.org/viewvc/chrome?view=rev&revision=27315 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=27324 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=27397 Review URL: http://codereview.chromium.org/153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27445 0039d316-1c4b-4281-b951-d872f2087c98
* Only write the image when writeImage is called. We don't write thetony@chromium.org2009-09-291-5/+2
| | | | | | | | | | | | | | | | other formats because when pasting, we want to make sure the image has priority. This method appears to only be called from the image context menu and when viewing an image only in a tab and using copy (ctrl+c or from the page menu). In both of these cases, if the user wants the URL, they can use the context menu "copy image url" to get the URL. BUG=21593 Review URL: http://codereview.chromium.org/254006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27439 0039d316-1c4b-4281-b951-d872f2087c98
* Enable a bunch of media layout testshclam@chromium.org2009-09-2954-429/+602
| | | | | | | | | | | | BUG=16779 TEST=layout tests After a long rewriting of media layout tests, we are able to enable them again. This change will leave us abotu 19 (out of 98) real failures. Review URL: http://codereview.chromium.org/249007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27437 0039d316-1c4b-4281-b951-d872f2087c98
* Chromium side implementations of some FileSystem methods. This is needed to ↵jianli@chromium.org2009-09-284-0/+40
| | | | | | | | | | | complete the WebKit bug fix https://bugs.webkit.org/show_bug.cgi?id=29109. BUG=none TEST=none Review URL: http://codereview.chromium.org/209072 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27420 0039d316-1c4b-4281-b951-d872f2087c98
* Fix dashboard history management to properly start from a blankojan@chromium.org2009-09-281-17/+14
| | | | | | | slate when converting the hash parameters to the currentState object. Review URL: http://codereview.chromium.org/242038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27417 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit revision 48796:48820levin@chromium.org2009-09-281-0/+6
| | | | | | | | | | | | Add some layout tests for me to investigate (likely just a rebaseline). BUG=None TEST=None TBR=senorblanco@chromium.org Review URL: http://codereview.chromium.org/251018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27415 0039d316-1c4b-4281-b951-d872f2087c98
* Incorporated initial WebGL implementation for Chrome, currentlykbr@google.com2009-09-282-0/+2035
| | | | | | | | | | | | | | | | | disabled in the build. Change ENABLE_3D_CANVAS to 1 in src/third_party/WebKit/WebKit/chromium/features.gypi and regenerate project files to compile. Current code is Windows-specific and requires the sandbox to be disabled. Follow-on work will add ports to other platforms and eventually work with the sandbox enabled. This CL follows https://bugs.webkit.org/show_bug.cgi?id=29664 . BUG=http://code.google.com/p/chromium/issues/detail?id=21852 TEST=none (runs preexisting WebGL layout tests; more coming) Review URL: http://codereview.chromium.org/219001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27404 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 27397 - First step towards NaClChrome integration:1. NaCl plugin ↵gregoryd@google.com2009-09-282-31/+24
| | | | | | | | | | | | | becomes a builtin plugin in Chrome and runs in the renderer process.2. Most of the changes are related to launching the NaCl process (that loads and runs the NaCl module) and establishing the initial communication between that process and the NaCl plugin.3. Command line flag "internalnacl" is required to enable the builtin NaCl plugin. NaCl still cannot run in Chrome sandbox, the flag automatically disables the sandboxCommitted: http://src.chromium.org/viewvc/chrome?view=rev&revision=27315 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=27324 Review URL: http://codereview.chromium.org/153002 TBR=gregoryd@google.com Review URL: http://codereview.chromium.org/235042 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27400 0039d316-1c4b-4281-b951-d872f2087c98
* First step towards NaCl-Chrome integration:1. NaCl plugin becomes a built-in ↵gregoryd@google.com2009-09-282-24/+31
| | | | | | | | | plugin in Chrome and runs in the renderer process.2. Most of the changes are related to launching the NaCl process (that loads and runs the NaCl module) and establishing the initial communication between that process and the NaCl plugin.3. Command line flag "--internal-nacl" is required to enable the built-in NaCl plugin. NaCl still cannot run in Chrome sandbox, the flag automatically disables the sandboxCommitted: http://src.chromium.org/viewvc/chrome?view=rev&revision=27315 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=27324 Review URL: http://codereview.chromium.org/153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27397 0039d316-1c4b-4281-b951-d872f2087c98
* Remove failing expectations for tests, fixed in ↵dglazkov@chromium.org2009-09-281-4/+0
| | | | | | | | | | | | http://trac.webkit.org/changeset/48759. TBR=abarth TEST=none BUG=17523 Review URL: http://codereview.chromium.org/249019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27376 0039d316-1c4b-4281-b951-d872f2087c98
* A couple fixes to layout test scripts:jianli@chromium.org2009-09-283-4/+8
| | | | | | | | | | | | | | | | 1) Fix division by zero if running only 1 WONTFIX test. 2) Do not add to the missing list if a test missing the result is marked as WONTFIX. Also update the test_expectation list: 1) Remove SKIP for one test so that we can rebaseline it later. 2) Remove a qt test that was skipped previously because its missing result. BUG=none TEST=non Review URL: http://codereview.chromium.org/246013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27373 0039d316-1c4b-4281-b951-d872f2087c98
* Be defensive against 0-sized custom cursors. This may fix a moderately commoncevans@chromium.org2009-09-282-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | browser crash that triggers ~100 times a day: `anonymous namespace'::PureCall() _invalid_parameter_noinfo std::vector<unsigned char,std::allocator<unsigned char> >::operator[](unsigned int) WebCursor::GetCursor(HINSTANCE__ *) RenderWidgetHostViewWin::UpdateCursorIfOverSelf() RenderWidgetHostViewWin::UpdateCursor(WebCursor const &) I was unable to reproduce myself, so I don't know if the bad cursor came from the web or from the Windows "external cursor" concept. Accordingly: - Do not accept 0-sized cursors from the renderer. - Do not access array[0] on an empty array as per other call sites in the cursor code. Thanks to The Mighty Hoppy for triggering this via means unknown! BUG=NONE TEST=NONE (unable to reproduce) Review URL: http://codereview.chromium.org/251008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27372 0039d316-1c4b-4281-b951-d872f2087c98
* When the results.json file is not locally available, grab itojan@chromium.org2009-09-282-41/+75
| | | | | | | | | | | off the appropriate archive directory. This allows us to not lose the layout tests results history one one of the bots is clobbered. A small change is needed to the buildbots to pass in the --build-name flag before we'll be able to actually grab the results of archive location. Review URL: http://codereview.chromium.org/246014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27364 0039d316-1c4b-4281-b951-d872f2087c98
* Make dumpBackForwardList() print file and data URL results that match upstream.dglazkov@chromium.org2009-09-282-7/+27
| | | | | | | | | | R=darin TEST=LayoutTests/fast/loader/* BUG=8407 Review URL: http://codereview.chromium.org/243011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27363 0039d316-1c4b-4281-b951-d872f2087c98
* Add two more transition-end-event flaky layout testsnsylvain@chromium.org2009-09-281-0/+2
| | | | | | | | | | to the list. BUG:9798 Review URL: http://codereview.chromium.org/248018 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27360 0039d316-1c4b-4281-b951-d872f2087c98
* Disable LayoutTests/transitions/transition-end-event-window.html becausensylvain@chromium.org2009-09-271-0/+2
| | | | | | | | | | | | | | it fails too often on linux. Also disable LayoutTests/transitions/transition-end-event-left.htmt It looks like all the transition-end-event-* are flaky. BUG:9798 Review URL: http://codereview.chromium.org/248015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27343 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit update 48766:48796levin@chromium.org2009-09-271-0/+3
| | | | | | | | | | | | | Add failure for newly added test for me to investigate. TBR=senorblanco@chromium.org TEST=None BUG=None Review URL: http://codereview.chromium.org/242023 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27337 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit update 48747:48766levin@chromium.org2009-09-272-1/+6
| | | | | | | | | | | | | | Rolling right up to the next breakage. Adding new breakages that I need to investigate. TBR=senorblanco@chromium.org TEST=none BUG=none Review URL: http://codereview.chromium.org/251006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27336 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 27324 - First step towards NaClChrome integration:1. NaCl plugin ↵gregoryd@google.com2009-09-262-31/+24
| | | | | | | | | | | | becomes a builtin plugin in Chrome and runs in the renderer process.2. Most of the changes are related to launching the NaCl process (that loads and runs the NaCl module) and establishing the initial communication between that process and the NaCl plugin.3. Command line flag "internalnacl" is required to enable the builtin NaCl plugin. NaCl still cannot run in Chrome sandbox, the flag automatically disables the sandboxCommitted: http://src.chromium.org/viewvc/chrome?view=rev&revision=27315 Review URL: http://codereview.chromium.org/153002 TBR=bradnelson@google.com Review URL: http://codereview.chromium.org/244017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27326 0039d316-1c4b-4281-b951-d872f2087c98
* First step towards NaCl-Chrome integration:1. NaCl plugin becomes a built-in ↵gregoryd@google.com2009-09-262-24/+31
| | | | | | | | plugin in Chrome and runs in the renderer process.2. Most of the changes are related to launching the NaCl process (that loads and runs the NaCl module) and establishing the initial communication between that process and the NaCl plugin.3. Command line flag "--internal-nacl" is required to enable the built-in NaCl plugin. NaCl still cannot run in Chrome sandbox, the flag automatically disables the sandboxCommitted: http://src.chromium.org/viewvc/chrome?view=rev&revision=27315 Review URL: http://codereview.chromium.org/153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27324 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 27315 - First step towards NaClChrome integration:1. NaCl plugin ↵gregoryd@google.com2009-09-262-31/+24
| | | | | | | | | | | | becomes a builtin plugin in Chrome and runs in the renderer process.2. Most of the changes are related to launching the NaCl process (that loads and runs the NaCl module) and establishing the initial communication between that process and the NaCl plugin.3. Command line flag "internalnacl" is required to enable the builtin NaCl plugin. NaCl still cannot run in Chrome sandbox, the flag automatically disables the sandbox Review URL: http://codereview.chromium.org/153002 TBR=gregoryd@google.com Review URL: http://codereview.chromium.org/244014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27317 0039d316-1c4b-4281-b951-d872f2087c98
* First step towards NaCl-Chrome integration:1. NaCl plugin becomes a built-in ↵gregoryd@google.com2009-09-262-24/+31
| | | | | | | | plugin in Chrome and runs in the renderer process.2. Most of the changes are related to launching the NaCl process (that loads and runs the NaCl module) and establishing the initial communication between that process and the NaCl plugin.3. Command line flag "--internal-nacl" is required to enable the built-in NaCl plugin. NaCl still cannot run in Chrome sandbox, the flag automatically disables the sandbox Review URL: http://codereview.chromium.org/153002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27315 0039d316-1c4b-4281-b951-d872f2087c98
* Fix comments in test expectations. Also, the description in my previousdpranke@google.com2009-09-261-9/+25
| | | | | | | | | | | | | change to this file was wrong, the new values for expectations are 'TEXT', 'IMAGE', and 'IMAGE+TEXT' ('BOTH' is not a valid value). R=ojan BUG=none TEST=none Review URL: http://codereview.chromium.org/245019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27310 0039d316-1c4b-4281-b951-d872f2087c98
* Add the ability to distinguish between tests that fail due to a differencedpranke@google.com2009-09-263-20/+44
| | | | | | | | | | | | | | | | | | | | | in the text output, tests that fail due to differences in the image output, and tests that fail both. This adds the additional failure types 'IMAGE', 'TEXT', and 'BOTH' to test_expectations.txt. Tests that are marked 'FAIL' should eventually be migrated to one of the above three, but for now FAIL means that any of the three types might happen. Note that we do not distinguish between a text diff and a simplified text diff; 'TEXT' will cover either or both types of failures. BUG=none TEST=none R=ojan@chromium.org Review URL: http://codereview.chromium.org/235016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27305 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline a Linux layout test.evan@chromium.org2009-09-264-4/+19
| | | | | | | | | | | The div is taller on Linux, looks like by about 1px per line. Matchin Windows font metrics in RTL = :(. BUG=11122 Review URL: http://codereview.chromium.org/235032 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27302 0039d316-1c4b-4281-b951-d872f2087c98
* linux+mac: drop unused codeevan@chromium.org2009-09-263-20/+8
| | | | | | | | | | | | The TrackMouseFoo functions were added to match Windows, but we're obviously passing all these layout tests without 'em and the body of the function is empty. BUG=9523 Review URL: http://codereview.chromium.org/235031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27301 0039d316-1c4b-4281-b951-d872f2087c98
* Assorted dashboard changes:ojan@chromium.org2009-09-262-178/+248
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -Completely rewrite the way we figure out which expectations apply to which platform. This approach is ~30% faster and now we can cache the results, so subsequent calls to processTestRunsForBuilder are two orders of magnitude faster. Also, this fixes a number of bugs where we would incorrectly deal with fallback for a given platform. For example: LINUX = LayoutTests/accessibility = PASS FAIL MAC = LayoutTests/accessibility/foo.html = CRASH Before, even on the linux view, we'd think that linux had no expectations for this test. -Consolidate invalid key logging. There's a bunch of logging that happens at the beginning now. The logging is useful, so I'm not totally sure how to avoid the noise. -Allow for comma or space separated lists in the list of tests for the individual tests view. This allows for copy pasting from the list of tests that have never failed into the test input box. -Fix bug where we couldn't get back to the builder view from the individual tests view. -Once we've loaded the current builder's view, asynchronously call processTestRunsForBuilder for all the other builders. This makes other actions like going to a different builder or clicking on an individual test much faster. -Add support for WIN-XP and WIN-VISTA modifiers. Review URL: http://codereview.chromium.org/219024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27299 0039d316-1c4b-4281-b951-d872f2087c98
* Mark destroy-during-npp-new test as flaky on Windows too.thestig@chromium.org2009-09-251-1/+1
| | | | | | | | | BUG=21841 TEST=none TBR=senorblanco Review URL: http://codereview.chromium.org/235026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27291 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline fast/dom/HTMLSelectElement/named-options.html. The upstream ↵japhet@chromium.org2009-09-253-5/+48
| | | | | | | | | | | | expectations include failures, and we pass everything BUG=10859 BUG=10861 TEST=green layout bots Review URL: http://codereview.chromium.org/231009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27271 0039d316-1c4b-4281-b951-d872f2087c98
* WebKit update 48734:48747levin@chromium.org2009-09-251-0/+3
| | | | | | | | | | | Add a temporary failure for a newly added test. TEST=none BUG=none Review URL: http://codereview.chromium.org/242005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27267 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline tests to adjust for changes upstream.dglazkov@chromium.org2009-09-2523-308/+425
| | | | | | | | | | | | | | | http://trac.webkit.org/changeset/48701 (xhr-related changes) http://trac.webkit.org/changeset/48690 (chromium-only test migration) http://trac.webkit.org/changeset/48699 (chromium-only test migration) R=jparent BUG=none TEST=none Review URL: http://codereview.chromium.org/246002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27259 0039d316-1c4b-4281-b951-d872f2087c98
* Mark destroy-during-npp-new test as flaky.thestig@chromium.org2009-09-251-0/+1
| | | | | | | | | BUG=21841 TEST=none TBR=senorblanco Review URL: http://codereview.chromium.org/246008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27255 0039d316-1c4b-4281-b951-d872f2087c98
* Update test_expecations for some flaky tests.senorblanco@chromium.org2009-09-251-5/+7
| | | | | | | | | | BUG=9798,10475,22014 TEST=green is good TBR=dglazkov Review URL: http://codereview.chromium.org/248002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27214 0039d316-1c4b-4281-b951-d872f2087c98
* Move another method from WebViewDelegate to WebViewClient.darin@chromium.org2009-09-254-7/+6
| | | | | | | | | | | | This is kinda like yelling, right? R=dglazkov BUG=10033 TEST=none Review URL: http://codereview.chromium.org/241002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27210 0039d316-1c4b-4281-b951-d872f2087c98
* DevTools: Provisional fix for webkit merge: add event listeners panel js.pfeldman@chromium.org2009-09-251-0/+1
| | | | | | Review URL: http://codereview.chromium.org/246001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27177 0039d316-1c4b-4281-b951-d872f2087c98
* This is an implementation of the bridge method for copying arbitrary ↵apavlov@chromium.org2009-09-256-0/+19
| | | | | | | | | | plaintext onto a clipboard in Chromium. The method is declared upstream, in a patch associated with https://bugs.webkit.org/show_bug.cgi?id=29634 Review URL: http://codereview.chromium.org/211052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27176 0039d316-1c4b-4281-b951-d872f2087c98
* Roll back Markus's CL ( http://codereview.chromium.org/196053)jshin@chromium.org2009-09-251-14/+2
| | | | | | | | | BUG=none TEST=UI test and valgrind test pass TBR=markus Review URL: http://codereview.chromium.org/222031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27160 0039d316-1c4b-4281-b951-d872f2087c98
* When converting between units of time or data types of different precision,markus@chromium.org2009-09-241-2/+14
| | | | | | | | | | | | | | | | | | | we have to be careful to consistently round in the same direction. Timeout checks usually check if Now() is less or equal to a deadline in order to determine if a timeout has occurred. This correctly handles the case where actual sleep times are equal or longer than requested sleep times. But if we round down when setting the sleep delay, this can result in unnecessary and expensive looping. Make sure, we always round up when converting to a format with less precision. BUG=none TEST=none Review URL: http://codereview.chromium.org/196053 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27146 0039d316-1c4b-4281-b951-d872f2087c98
* Mark redirect-cross-origin-post.html failing both debug/release on Windowsjshin@chromium.org2009-09-241-1/+1
| | | | | | | | | BUG=10476 TEST=NONE TBR=dglazkov Review URL: http://codereview.chromium.org/239005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27141 0039d316-1c4b-4281-b951-d872f2087c98
* Roll WebKit to 48734. Includes 2 sided patch of mine.jorlow@chromium.org2009-09-242-2/+2
| | | | | | | | | | | | Match the new interfaces used for StorageNamespace in WebKit. TBR=dglazkov BUG=none TEST=none Review URL: http://codereview.chromium.org/219038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27139 0039d316-1c4b-4281-b951-d872f2087c98
* Change rebaselining tool to pull win baselines from xp botvictorw@chromium.org2009-09-241-2/+2
| | | | | | | | | | | | instead of vista bot which is not stable now. TBR=dpranke TEST=none BUG=none Review URL: http://codereview.chromium.org/224013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27132 0039d316-1c4b-4281-b951-d872f2087c98
* Fix FTP directory listings for servers which use \n as the line break.phajdan.jr@chromium.org2009-09-241-4/+7
| | | | | | | | | | | | | The previous version of the code assumed that \r\n (CRLF) will always be used. The FTP spec is extremely imprecise about the LISTing format. TEST=See bug. BUG=22879 Review URL: http://codereview.chromium.org/238001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27128 0039d316-1c4b-4281-b951-d872f2087c98
* Downstreamed v8 extension building & webkit_chromium_port flagyaar@chromium.org2009-09-241-0/+16
| | | | | | | | | | 1. Downstreamed building webkit/extension/v8/*.cc files, which were built by upstream webcore by mistake. Now glue will build them. I tested that even though webcore still builds them, there are no errors if glue also builds them. 2. Added webkit_chromium_port variable to build/common.gypi which is turned off by default. Currently, nothing uses it but the chrome port will need it. Review URL: http://codereview.chromium.org/220026 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27122 0039d316-1c4b-4281-b951-d872f2087c98
* Preliminary fixes to enable link dependent objects.maruel@chromium.org2009-09-242-3/+8
| | | | | | | | BUG=22926 TEST=still builds Review URL: http://codereview.chromium.org/231020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27112 0039d316-1c4b-4281-b951-d872f2087c98
* Rebaseline failures from WebKit merge 44202:44252japhet@chromium.org2009-09-246-66/+3
| | | | | | | | | BUG=12282 TEST=green layout bots Review URL: http://codereview.chromium.org/222015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27102 0039d316-1c4b-4281-b951-d872f2087c98
* Adjust purify expectations for changes in upstream signatures.dglazkov@chromium.org2009-09-241-12/+13
| | | | | | | | | | TBR=thomasvl TEST=none BUG=none Review URL: http://codereview.chromium.org/238002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27095 0039d316-1c4b-4281-b951-d872f2087c98