Skip to content

Commit

Permalink
WebKit merge 41498:41530.
Browse files Browse the repository at this point in the history
Review URL: http://codereview.chromium.org/41017

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11312 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
ericroman@google.com committed Mar 10, 2009
1 parent 05a7ce2 commit f296ba5
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 5 deletions.
4 changes: 2 additions & 2 deletions DEPS
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
vars = {
"webkit_trunk":
"http://svn.webkit.org/repository/webkit/trunk",
"webkit_revision": "41498",
"webkit_revision": "41530",
}


Expand All @@ -19,7 +19,7 @@ deps = {
"http://googletest.googlecode.com/svn/trunk@167",

"src/third_party/WebKit":
"/trunk/deps/third_party/WebKit@11253",
"/trunk/deps/third_party/WebKit@11310",

"src/third_party/icu38":
"/trunk/deps/third_party/icu38@10692",
Expand Down
2 changes: 1 addition & 1 deletion WEBKIT_MERGE_REVISION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
http://svn.webkit.org/repository/webkit/trunk@41498
http://svn.webkit.org/repository/webkit/trunk@41530
1 change: 1 addition & 0 deletions webkit/build/WebCore/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -684,6 +684,7 @@ input_files = [
'$WEBCORE_DIR/rendering/RenderWidget.cpp',
'$WEBCORE_DIR/rendering/RenderWordBreak.cpp',
'$WEBCORE_DIR/rendering/RootInlineBox.cpp',
'$WEBCORE_DIR/rendering/ScrollBehavior.cpp',
'$WEBCORE_DIR/rendering/SVGCharacterLayoutInfo.cpp',
'$WEBCORE_DIR/rendering/SVGInlineFlowBox.cpp',
'$WEBCORE_DIR/rendering/SVGInlineTextBox.cpp',
Expand Down
8 changes: 8 additions & 0 deletions webkit/build/WebCore/WebCore.vcproj
Original file line number Diff line number Diff line change
Expand Up @@ -3792,6 +3792,14 @@
RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\SVGRootInlineBox.h"
>
</File>
<File
RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\ScrollBehavior.cpp"
>
</File>
<File
RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\ScrollBehavior.h"
>
</File>
<File
RelativePath="..\..\..\third_party\WebKit\WebCore\rendering\TableLayout.h"
>
Expand Down
1 change: 1 addition & 0 deletions webkit/glue/editor_client_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ MSVC_PUSH_WARNING_LEVEL(0);
#include "KeyboardEvent.h"
#include "PlatformKeyboardEvent.h"
#include "PlatformString.h"
#include "RenderObject.h"
MSVC_POP_WARNING();

#include "WebKit.h"
Expand Down
3 changes: 2 additions & 1 deletion webkit/glue/searchable_form_data.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#include "base/compiler_specific.h"

MSVC_PUSH_WARNING_LEVEL(0);
#include "CSSHelper.h"
#include "CString.h"
#include "Document.h"
#include "DocumentLoader.h"
Expand Down Expand Up @@ -296,7 +297,7 @@ WebCore::HTMLInputElement* GetTextElement(
} // namespace

SearchableFormData* SearchableFormData::Create(WebCore::Element* element) {
if (!element->isFormControlElement() || !element->isHTMLElement()) {
if (!element->isFormControlElement() || !element->isHTMLElement()) {
return NULL;
}

Expand Down
4 changes: 3 additions & 1 deletion webkit/glue/webframeloaderclient_impl.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1218,7 +1218,9 @@ void WebFrameLoaderClient::frameLoadCompleted() {
// Note: Can be called multiple times.
// Even if already complete, we might have set a previous item on a frame that
// didn't do any data loading on the past transaction. Make sure to clear these out.
webframe_->frame()->loader()->setPreviousHistoryItem(0);

// FIXME: setPreviousHistoryItem() no longer exists. http://crbug.com/8566
// webframe_->frame()->loader()->setPreviousHistoryItem(0);
}

void WebFrameLoaderClient::saveViewStateToItem(HistoryItem*) {
Expand Down
2 changes: 2 additions & 0 deletions webkit/port/bindings/v8/v8_proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,8 @@
#include "Settings.h"
#include "StyleSheet.h"
#include "StyleSheetList.h"
#include "SVGColor.h"
#include "SVGPaint.h"
#include "TextEvent.h"
#include "TextMetrics.h"
#include "TimeRanges.h"
Expand Down
1 change: 1 addition & 0 deletions webkit/tools/layout_tests/test_lists/tests_fixable.txt
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ DEFER : LayoutTests/fast/repaint/bugzilla-6473.html = PASS FAIL

// Worker related tests (ENABLE_WORKERS):
DEFER SKIP : LayoutTests/fast/workers = TIMEOUT FAIL
DEFER SKIP : LayoutTests/http/tests/workers = TIMEOUT FAIL
DEFER SKIP : LayoutTests/http/tests/xmlhttprequest/workers = TIMEOUT
DEFER: LayoutTests/fast/events/dispatchEvent-crash.html = FAIL

Expand Down
2 changes: 2 additions & 0 deletions webkit/webkit.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -3207,6 +3207,8 @@
'../third_party/WebKit/WebCore/rendering/RenderWordBreak.h',
'../third_party/WebKit/WebCore/rendering/RootInlineBox.cpp',
'../third_party/WebKit/WebCore/rendering/RootInlineBox.h',
'../third_party/WebKit/WebCore/rendering/ScrollBehavior.cpp',
'../third_party/WebKit/WebCore/rendering/ScrollBehavior.h',
'../third_party/WebKit/WebCore/rendering/SVGCharacterLayoutInfo.cpp',
'../third_party/WebKit/WebCore/rendering/SVGCharacterLayoutInfo.h',
'../third_party/WebKit/WebCore/rendering/SVGInlineFlowBox.cpp',
Expand Down

0 comments on commit f296ba5

Please sign in to comment.