summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings
diff options
context:
space:
mode:
authorLeon Clarke <leonclarke@google.com>2010-06-03 15:40:26 +0100
committerLeon Clarke <leonclarke@google.com>2010-06-08 12:24:52 +0100
commit4661b323d4bfa799928ba102f29ce8be00fb5dfa (patch)
treea30650314eeb17a20dcd827ebf5a7516330e7395 /WebCore/bindings
parent5af96e2c7b73ebc627c6894727826a7576d31758 (diff)
downloadexternal_webkit-4661b323d4bfa799928ba102f29ce8be00fb5dfa.zip
external_webkit-4661b323d4bfa799928ba102f29ce8be00fb5dfa.tar.gz
external_webkit-4661b323d4bfa799928ba102f29ce8be00fb5dfa.tar.bz2
Merge webkit.org at r60469 : Fix conflicts.
The changes to DomWindow.cpp are needed by @60104 moving things from the frame to the FrameView http://trac.webkit.org/changeset/60104 Change-Id: I8a7aa0478c2f0239bc52bb5078c446e5c8c84972
Diffstat (limited to 'WebCore/bindings')
-rw-r--r--WebCore/bindings/v8/ScriptCallStack.cpp4
-rw-r--r--WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp9
2 files changed, 0 insertions, 13 deletions
diff --git a/WebCore/bindings/v8/ScriptCallStack.cpp b/WebCore/bindings/v8/ScriptCallStack.cpp
index e55f8b5..c0b1780 100644
--- a/WebCore/bindings/v8/ScriptCallStack.cpp
+++ b/WebCore/bindings/v8/ScriptCallStack.cpp
@@ -52,17 +52,13 @@ ScriptCallStack* ScriptCallStack::create(const v8::Arguments& arguments, unsigne
bool ScriptCallStack::callLocation(String* sourceName, int* sourceLineNumber, String* functionName)
{
-<<<<<<< HEAD
#if PLATFORM(ANDROID)
return false;
#else
- if (!topStackFrame(*sourceName, *sourceLineNumber, *functionName))
-=======
v8::HandleScope scope;
v8::Context::Scope contextScope(v8::Context::GetCurrent());
v8::Handle<v8::StackTrace> stackTrace(v8::StackTrace::CurrentStackTrace(1));
if (stackTrace.IsEmpty())
->>>>>>> webkit.org at r60469
return false;
if (stackTrace->GetFrameCount() <= 0) {
// Successfully grabbed stack trace, but there are no frames.
diff --git a/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp b/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp
index badf332..4867cfe 100644
--- a/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp
+++ b/WebCore/bindings/v8/custom/V8DOMWindowCustom.cpp
@@ -697,21 +697,12 @@ v8::Handle<v8::Value> V8DOMWindow::openCallback(const v8::Arguments& args)
windowFeatures.ySet = false;
}
if (!rawFeatures.widthSet) {
-<<<<<<< HEAD
- windowFeatures.width = 0;
- windowFeatures.widthSet = false;
- }
- if (!rawFeatures.heightSet) {
- windowFeatures.height = 0;
- windowFeatures.heightSet = false;
-=======
windowFeatures.width = 0;
windowFeatures.widthSet = false;
}
if (!rawFeatures.heightSet) {
windowFeatures.height = 0;
windowFeatures.heightSet = false;
->>>>>>> webkit.org at r60469
}
frame = V8BindingDOMWindow::createWindow(V8BindingState::Only(), callingFrame, enteredFrame, frame, urlString, frameName, windowFeatures, v8::Local<v8::Value>());