debian/0000775000000000000000000000000012312273072007167 5ustar debian/patches/0000775000000000000000000000000012312273072010616 5ustar debian/patches/webkit-119798.patch0000664000000000000000000000057012312273072013706 0ustar Origin: https://bugs.webkit.org/show_bug.cgi?id=119798 Subversion Revision: 154045 --- a/Source/ThirdParty/ANGLE/src/compiler/glslang.y +++ b/Source/ThirdParty/ANGLE/src/compiler/glslang.y @@ -47,6 +47,7 @@ %expect 1 /* One shift reduce conflict because of if | else */ %pure-parser %parse-param {TParseContext* context} +%lex-param {YYLEX_PARAM} %union { struct { debian/patches/0007-Fix-build-with-namespaced-Qt.patch0000664000000000000000000000175112312273072017503 0ustar From 6b098d5bd4d821181bf2cb2399c76e1f2e6b4868 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Fri, 13 Sep 2013 17:35:03 +0200 Subject: [PATCH 7/8] Fix build with namespaced Qt One forward declaration of QUrl was missing proper namespace macros. Change-Id: Ibb2414b63e2926015874b4cf7024f101d59be6dc Reviewed-by: Allan Sandfeld Jensen --- Source/WebKit2/UIProcess/API/qt/qquickurlschemedelegate_p.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/WebKit2/UIProcess/API/qt/qquickurlschemedelegate_p.h b/Source/WebKit2/UIProcess/API/qt/qquickurlschemedelegate_p.h index 596d3c2..4e5ac34 100644 --- a/Source/WebKit2/UIProcess/API/qt/qquickurlschemedelegate_p.h +++ b/Source/WebKit2/UIProcess/API/qt/qquickurlschemedelegate_p.h @@ -26,6 +26,10 @@ #include #include +QT_BEGIN_NAMESPACE +class QUrl; +QT_END_NAMESPACE + class QQuickNetworkRequest; class QQuickNetworkReply; -- 1.9.0 debian/patches/0008-arm-Inverted-src-and-dest-FP-registers-in-DFG-specul.patch0000664000000000000000000000352312312273072023651 0ustar From 14b85a7094ae84f2431c59b84eba1aa5a0737664 Mon Sep 17 00:00:00 2001 From: Julien Brianceau Date: Wed, 16 Oct 2013 16:04:05 +0200 Subject: [PATCH 8/8] [arm] Inverted src and dest FP registers in DFG speculative JIT when using hardfp. https://bugs.webkit.org/show_bug.cgi?id=122555 Patch by Julien Brianceau on 2013-10-09 Reviewed by Michael Saboff. * dfg/DFGSpeculativeJIT.h: (JSC::DFG::SpeculativeJIT::appendCallWithExceptionCheckSetResult): (JSC::DFG::SpeculativeJIT::appendCallSetResult): Change-Id: Ib633513948031702efd5ca0d4b89920e99979755 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@157173 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Allan Sandfeld Jensen --- Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h b/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h index 949ddfe..7edaee1 100644 --- a/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h +++ b/Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h @@ -2037,13 +2037,15 @@ public: JITCompiler::Call appendCallWithExceptionCheckSetResult(const FunctionPtr& function, FPRReg result) { JITCompiler::Call call = appendCallWithExceptionCheck(function); - m_jit.moveDouble(result, FPRInfo::argumentFPR0); + if (result != InvalidFPRReg) + m_jit.moveDouble(FPRInfo::argumentFPR0, result); return call; } JITCompiler::Call appendCallSetResult(const FunctionPtr& function, FPRReg result) { JITCompiler::Call call = m_jit.appendCall(function); - m_jit.moveDouble(result, FPRInfo::argumentFPR0); + if (result != InvalidFPRReg) + m_jit.moveDouble(FPRInfo::argumentFPR0, result); return call; } #else -- 1.9.0 debian/patches/bug_118860_qtwebkit_511.patch0000664000000000000000000002405512312273072015551 0ustar Index: Source/WebKit2/ChangeLog =================================================================== --- a/Source/WebKit2/ChangeLog (revision 152824) +++ b/Source/WebKit2/ChangeLog (working copy) @@ -1,3 +1,21 @@ +2013-07-17 Alexandre Abreu + + Add a 'isMainFrame' parameter to QWebNavigationRequest. + https://bugs.webkit.org/show_bug.cgi?id=118860 + + Reviewed by NOBODY (OOPS!). + + * UIProcess/API/qt/qwebnavigationrequest.cpp: + (QWebNavigationRequestPrivate::QWebNavigationRequestPrivate): + (QWebNavigationRequest::QWebNavigationRequest): + (QWebNavigationRequest::navigationType): + (QWebNavigationRequest::isMainFrame): + * UIProcess/API/qt/qwebnavigationrequest_p.h: + * UIProcess/API/qt/tests/publicapi/tst_publicapi.cpp: + * UIProcess/qt/QtWebPagePolicyClient.cpp: + (WebKit::QtWebPagePolicyClient::decidePolicyForNavigationAction): + * UIProcess/qt/QtWebPagePolicyClient.h: + 2013-01-24 Michael Brüning [Qt][WK2] Pages / resources cannot be loaded from qrc files. Index: Source/WebKit2/UIProcess/API/qt/qwebnavigationrequest.cpp =================================================================== --- a/Source/WebKit2/UIProcess/API/qt/qwebnavigationrequest.cpp (revision 152631) +++ b/Source/WebKit2/UIProcess/API/qt/qwebnavigationrequest.cpp (working copy) @@ -25,12 +25,13 @@ class QWebNavigationRequestPrivate { public: - QWebNavigationRequestPrivate(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType) + QWebNavigationRequestPrivate(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType, bool isMainFrame) : url(url) , mouseButton(mouseButton) , keyboardModifiers(keyboardModifiers) , action(QQuickWebView::AcceptRequest) , navigationType(navigationType) + , isMainFrame(isMainFrame) { } @@ -43,11 +44,12 @@ public: Qt::KeyboardModifiers keyboardModifiers; QQuickWebView::NavigationRequestAction action; QQuickWebView::NavigationType navigationType; + bool isMainFrame; }; -QWebNavigationRequest::QWebNavigationRequest(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType, QObject* parent) +QWebNavigationRequest::QWebNavigationRequest(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType, bool isMainFrame, QObject* parent) : QObject(parent) - , d(new QWebNavigationRequestPrivate(url, mouseButton, keyboardModifiers, navigationType)) + , d(new QWebNavigationRequestPrivate(url, mouseButton, keyboardModifiers, navigationType, isMainFrame)) { } @@ -89,3 +91,8 @@ QQuickWebView::NavigationType QWebNaviga { return d->navigationType; } + +bool QWebNavigationRequest::isMainFrame() const +{ + return d->isMainFrame; +} Index: Source/WebKit2/UIProcess/API/qt/qwebnavigationrequest_p.h =================================================================== --- a/Source/WebKit2/UIProcess/API/qt/qwebnavigationrequest_p.h (revision 152631) +++ b/Source/WebKit2/UIProcess/API/qt/qwebnavigationrequest_p.h (working copy) @@ -35,9 +35,10 @@ class QWEBKIT_EXPORT QWebNavigationReque Q_PROPERTY(int keyboardModifiers READ keyboardModifiers CONSTANT FINAL) Q_PROPERTY(QQuickWebView::NavigationRequestAction action READ action WRITE setAction NOTIFY actionChanged FINAL) Q_PROPERTY(QQuickWebView::NavigationType navigationType READ navigationType CONSTANT FINAL) + Q_PROPERTY(bool isMainFrame READ isMainFrame CONSTANT FINAL REVISION 1) public: - QWebNavigationRequest(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType, QObject* parent = 0); + QWebNavigationRequest(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType, bool isMainFrame, QObject* parent = 0); ~QWebNavigationRequest(); QUrl url() const; @@ -48,6 +49,8 @@ public: void setAction(QQuickWebView::NavigationRequestAction action); QQuickWebView::NavigationType navigationType() const; + bool isMainFrame() const; + Q_SIGNALS: void actionChanged(); Index: Source/WebKit2/UIProcess/API/qt/tests/publicapi/tst_publicapi.cpp =================================================================== --- a/Source/WebKit2/UIProcess/API/qt/tests/publicapi/tst_publicapi.cpp (revision 152631) +++ b/Source/WebKit2/UIProcess/API/qt/tests/publicapi/tst_publicapi.cpp (working copy) @@ -90,6 +90,7 @@ static QStringList expectedAPI = QString << "QWebNavigationRequest.keyboardModifiers --> int" << "QWebNavigationRequest.action --> QQuickWebView::NavigationRequestAction" << "QWebNavigationRequest.navigationType --> QQuickWebView::NavigationType" + << "QWebNavigationRequest.isMainFrame --> bool" << "QWebNavigationRequest.actionChanged() --> void" ; Index: Source/WebKit2/UIProcess/qt/QtWebPagePolicyClient.cpp =================================================================== --- a/Source/WebKit2/UIProcess/qt/QtWebPagePolicyClient.cpp (revision 152631) +++ b/Source/WebKit2/UIProcess/qt/QtWebPagePolicyClient.cpp (working copy) @@ -44,11 +44,11 @@ QtWebPagePolicyClient::QtWebPagePolicyCl WKPageSetPagePolicyClient(pageRef, &policyClient); } -void QtWebPagePolicyClient::decidePolicyForNavigationAction(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType, WKFramePolicyListenerRef listener) +void QtWebPagePolicyClient::decidePolicyForNavigationAction(const QUrl& url, Qt::MouseButton mouseButton, Qt::KeyboardModifiers keyboardModifiers, QQuickWebView::NavigationType navigationType, bool isMainFrame, WKFramePolicyListenerRef listener) { // NOTE: even though the C API (and the WebKit2 IPC) supports an asynchronous answer, this is not currently working. // We are expected to call the listener immediately. See the patch for https://bugs.webkit.org/show_bug.cgi?id=53785. - QWebNavigationRequest navigationRequest(url, mouseButton, keyboardModifiers, navigationType); + QWebNavigationRequest navigationRequest(url, mouseButton, keyboardModifiers, navigationType, isMainFrame); emit m_webView->navigationRequested(&navigationRequest); switch (navigationRequest.action()) { @@ -121,12 +121,13 @@ static QQuickWebView::NavigationType toQ return QQuickWebView::OtherNavigation; } -void QtWebPagePolicyClient::decidePolicyForNavigationAction(WKPageRef, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef, const void* clientInfo) +void QtWebPagePolicyClient::decidePolicyForNavigationAction(WKPageRef page, WKFrameRef frame, WKFrameNavigationType navigationType, WKEventModifiers modifiers, WKEventMouseButton mouseButton, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef, const void* clientInfo) { WKRetainPtr frameURL(AdoptWK, WKFrameCopyURL(frame)); WKRetainPtr requestURL(AdoptWK, WKURLRequestCopyURL(request)); QUrl qUrl = WKURLCopyQUrl(requestURL.get()); - toQtWebPagePolicyClient(clientInfo)->decidePolicyForNavigationAction(qUrl, toQtMouseButton(mouseButton), toQtKeyboardModifiers(modifiers), toQuickWebViewNavigationType(navigationType), listener); + bool isMainFrame = (WKPageGetMainFrame(page) == frame); + toQtWebPagePolicyClient(clientInfo)->decidePolicyForNavigationAction(qUrl, toQtMouseButton(mouseButton), toQtKeyboardModifiers(modifiers), toQuickWebViewNavigationType(navigationType), isMainFrame, listener); } void QtWebPagePolicyClient::decidePolicyForResponse(WKPageRef page, WKFrameRef frame, WKURLResponseRef response, WKURLRequestRef, WKFramePolicyListenerRef listener, WKTypeRef, const void*) Index: Source/WebKit2/UIProcess/qt/QtWebPagePolicyClient.h =================================================================== --- a/Source/WebKit2/UIProcess/qt/QtWebPagePolicyClient.h (revision 152631) +++ b/Source/WebKit2/UIProcess/qt/QtWebPagePolicyClient.h (working copy) @@ -36,7 +36,7 @@ public: QtWebPagePolicyClient(WKPageRef, QQuickWebView*); private: - void decidePolicyForNavigationAction(const QUrl&, Qt::MouseButton, Qt::KeyboardModifiers, QQuickWebView::NavigationType, WKFramePolicyListenerRef); + void decidePolicyForNavigationAction(const QUrl&, Qt::MouseButton, Qt::KeyboardModifiers, QQuickWebView::NavigationType, bool isMainFrame, WKFramePolicyListenerRef); // WKPagePolicyClient callbacks. static void decidePolicyForNavigationAction(WKPageRef, WKFrameRef, WKFrameNavigationType, WKEventModifiers, WKEventMouseButton, WKURLRequestRef, WKFramePolicyListenerRef, WKTypeRef userData, const void* clientInfo); Index: Source/WebKit/qt/declarative/plugin.cpp =================================================================== --- a/Source/WebKit/qt/declarative/plugin.cpp 2013-08-28 07:12:14.218319130 +0300 +++ b/Source/WebKit/qt/declarative/plugin.cpp 2013-08-28 07:12:55.398318775 +0300 @@ -58,6 +58,7 @@ qmlRegisterUncreatableType(uri, 3, 0, "WebPage", QObject::tr("Cannot create separate instance of WebPage, use WebView")); qmlRegisterUncreatableType(uri, 3, 0, "NetworkReply", QObject::tr("Cannot create separate instance of NetworkReply")); qmlRegisterUncreatableType(uri, 3, 0, "NavigationRequest", QObject::tr("Cannot create separate instance of NavigationRequest")); + qmlRegisterUncreatableType(uri, 3, 1, "NavigationRequest", QObject::tr("Cannot create separate instance of NavigationRequest")); qmlRegisterUncreatableType(uri, 3, 0, "WebLoadRequest", QObject::tr("Cannot create separate instance of WebLoadRequest")); #endif } debian/patches/05_sparc_unaligned_access.diff0000664000000000000000000000242312312273072016434 0ustar Description: fix some alignment problems on sparc. Author: Mike Hommey Author: Timo Jyrinki --- Source/JavaScriptCore/wtf/ListHashSet.h | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) --- a/Source/WTF/wtf/ListHashSet.h +++ b/Source/WTF/wtf/ListHashSet.h @@ -168,7 +168,7 @@ namespace WTF { : m_freeList(pool()) , m_isDoneWithInitialFreeList(false) { - memset(m_pool.pool, 0, sizeof(m_pool.pool)); + memset(m_pool, 0, sizeof(m_pool)); } Node* allocate() @@ -217,16 +217,13 @@ namespace WTF { } private: - Node* pool() { return reinterpret_cast_ptr(m_pool.pool); } + Node* pool() { return reinterpret_cast_ptr(m_pool); } Node* pastPool() { return pool() + m_poolSize; } Node* m_freeList; bool m_isDoneWithInitialFreeList; static const size_t m_poolSize = inlineCapacity; - union { - char pool[sizeof(Node) * m_poolSize]; - double forAlignment; - } m_pool; + uint32_t m_pool[(sizeof(Node) * m_poolSize + sizeof(uint32_t) - 1) / sizeof(uint32_t)]; }; template struct ListHashSetNode { debian/patches/0005-JSC-ARM-traditional-failing-on-Octane-NavierStokes-t.patch0000664000000000000000000000262512312273072023676 0ustar From b6f68bb1304c2f0616572143e224c3dca935d46f Mon Sep 17 00:00:00 2001 From: Gabor Rapcsanyi Date: Tue, 10 Sep 2013 16:13:54 +0200 Subject: [PATCH 5/8] JSC ARM traditional failing on Octane NavierStokes test https://bugs.webkit.org/show_bug.cgi?id=115626 Reviewed by Zoltan Herczeg. Change the ARM traditional assembler to use double precision on value conversions. * assembler/ARMAssembler.h: Change-Id: I2fbf6323a59120b497215696e10a1582ff927347 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@149601 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Jocelyn Turcotte --- Source/JavaScriptCore/assembler/ARMAssembler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/JavaScriptCore/assembler/ARMAssembler.h b/Source/JavaScriptCore/assembler/ARMAssembler.h index 18b1017..31d316d 100644 --- a/Source/JavaScriptCore/assembler/ARMAssembler.h +++ b/Source/JavaScriptCore/assembler/ARMAssembler.h @@ -163,8 +163,8 @@ namespace JSC { VMOV_VFP32 = 0x0e000a10, VMOV_ARM32 = 0x0e100a10, VCVT_F64_S32 = 0x0eb80bc0, - VCVT_S32_F64 = 0x0ebd0b40, - VCVT_U32_F64 = 0x0ebc0b40, + VCVT_S32_F64 = 0x0ebd0bc0, + VCVT_U32_F64 = 0x0ebc0bc0, VCVT_F32_F64 = 0x0eb70bc0, VCVT_F64_F32 = 0x0eb70ac0, VMRS_APSR = 0x0ef1fa10, -- 1.9.0 debian/patches/disable_jit.patch0000664000000000000000000000265112312273072014114 0ustar Description: disable JIT on archs where it is not supported Also, disable YARR JIT on archs where LLINT_C_LOOP is used. Author: Dmitry Shachnev Last-Update: 2014-03-15 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -629,10 +629,6 @@ #if PLATFORM(IOS_SIMULATOR) #define ENABLE_JIT 0 #define ENABLE_YARR_JIT 0 -#else - #define ENABLE_JIT 1 - #define ENABLE_LLINT 1 - #define ENABLE_YARR_JIT 1 #endif #define WTF_USE_APPKIT 0 @@ -896,12 +892,15 @@ #endif /* The JIT is enabled by default on all x86, x86-64, ARM & MIPS platforms. */ -#if !defined(ENABLE_JIT) \ - && (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(MIPS)) \ +#if !defined(ENABLE_JIT) +#if (CPU(X86) || CPU(X86_64) || CPU(ARM) || CPU(MIPS)) \ && (OS(DARWIN) || !COMPILER(GCC) || GCC_VERSION_AT_LEAST(4, 1, 0)) \ && !OS(WINCE) \ && !OS(QNX) #define ENABLE_JIT 1 +#else +#define ENABLE_JIT 0 +#endif #endif /* If possible, try to enable a disassembler. This is optional. We proceed in two @@ -1014,7 +1013,7 @@ #define ENABLE_REGEXP_TRACING 0 /* Yet Another Regex Runtime - turned on by default for JIT enabled ports. */ -#if !defined(ENABLE_YARR_JIT) && (ENABLE(JIT) || ENABLE(LLINT_C_LOOP)) && !PLATFORM(CHROMIUM) +#if !defined(ENABLE_YARR_JIT) && !ENABLE(LLINT_C_LOOP) && !PLATFORM(CHROMIUM) #define ENABLE_YARR_JIT 1 /* Setting this flag compares JIT results with interpreter results. */ debian/patches/LLIntCLoop32BigEndian.patch0000664000000000000000000000626112312273072015471 0ustar Description: Fix C loop backend work on (big endian) 32 bit platforms The fix is from webkit bugzilla, not yet in qtwebkit. 2013-01-17 Tobias Netzel LLInt C Loop backend should work on 32 bit platforms, both big and little endian https://bugs.webkit.org/show_bug.cgi?id=103128 Reviewed by NOBODY (OOPS!). This makes the C Loop backend work on 32 bit platforms (again) and fixes big endian support for 32 bit platforms. All tests pass on PowerPC OS X. * llint/LowLevelInterpreter.asm: When accessing the call frame always respect endianness. * llint/LowLevelInterpreter.cpp: (LLInt): Added missing header. (JSC::LLInt::Double2Ints): Added missing implementation. * llint/LowLevelInterpreter32_64.asm: When accessing the call frame always respect endianness. Bug: https://bugs.webkit.org/show_bug.cgi?id=10312 Last-Update: 2013-03-05 Index: a/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm =================================================================== --- a/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm (revision 139916) +++ b/Source/JavaScriptCore/llint/LowLevelInterpreter32_64.asm (working copy) @@ -1728,7 +1728,7 @@ _llint_op_next_pname: loadi 20[PC], t2 loadi PayloadOffset[cfr, t2, 8], t2 loadp JSPropertyNameIterator::m_jsStrings[t2], t3 - loadi [t3, t0, 8], t3 + loadi PayloadOffset[t3, t0, 8], t3 addi 1, t0 storei t0, PayloadOffset[cfr, t1, 8] loadi 4[PC], t1 Index: a/Source/JavaScriptCore/llint/LowLevelInterpreter.asm =================================================================== --- a/Source/JavaScriptCore/llint/LowLevelInterpreter.asm (revision 139916) +++ b/Source/JavaScriptCore/llint/LowLevelInterpreter.asm (working copy) @@ -263,13 +263,13 @@ macro assertNotConstant(index) end macro functionForCallCodeBlockGetter(targetRegister) - loadp Callee[cfr], targetRegister + loadp Callee + PayloadOffset[cfr], targetRegister loadp JSFunction::m_executable[targetRegister], targetRegister loadp FunctionExecutable::m_codeBlockForCall[targetRegister], targetRegister end macro functionForConstructCodeBlockGetter(targetRegister) - loadp Callee[cfr], targetRegister + loadp Callee + PayloadOffset[cfr], targetRegister loadp JSFunction::m_executable[targetRegister], targetRegister loadp FunctionExecutable::m_codeBlockForConstruct[targetRegister], targetRegister end @@ -841,7 +841,7 @@ macro interpretResolveWithBase(opcodeLen getResolveOperation(4, t0, t1) btpz t0, .slowPath - loadp ScopeChain[cfr], t3 + loadp ScopeChain + PayloadOffset[cfr], t3 # Get the base loadis ResolveOperation::m_operation[t0], t2 Index: a/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp =================================================================== --- a/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp (revision 139916) +++ b/Source/JavaScriptCore/llint/LowLevelInterpreter.cpp (working copy) @@ -33,6 +33,7 @@ #if ENABLE(LLINT_C_LOOP) #include "CodeBlock.h" +#include "JSValueInlines.h" #include "LLIntCLoop.h" #include "LLIntSlowPaths.h" #include "VMInspector.h" debian/patches/webkit_qt_hide_symbols.diff0000664000000000000000000000170612312273072016206 0ustar From: Modestas Vainius SUbject: Make hide_symbols to cover all QtWebKit portions Origin: vendor Author: Timo Jyrinki Last-Update: 2013-01-28 (use a similar patch on Qt 5) Forwarded: no Almost everything in Source/WebCore/generated was not build with -fvisibility=hidden resulting into redundantly polluted and huge dynamic symbol list in libQtWebKit.so. Therefore, move +hide_symbols configuration parameter upwards in order for it to cover everything including the offending Source/WebCore/CodeGenerators.pri --- a/Source/QtWebKit.pro 2012-12-18 19:04:43.000000000 +0000 +++ b/Source/QtWebKit.pro 2013-01-28 08:25:56.342911517 +0000 @@ -7,6 +7,11 @@ TEMPLATE = subdirs CONFIG += ordered +CONFIG(release):!CONFIG(standalone_package) { + contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols + unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions +} + api.file = api.pri SUBDIRS += api debian/patches/0009-Qt-Fix-build-with-Qt-5.2-QtPosition-module.patch0000664000000000000000000001733612312273072021673 0ustar From 5844aebeacebcb6ea83f8f52287f22a4dedbef61 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Fri, 27 Sep 2013 14:50:22 +0200 Subject: [PATCH 9/9] [Qt] Fix build with Qt 5.2 QtPosition module https://bugs.webkit.org/show_bug.cgi?id=121089 Reviewed by Simon Hausmann. .: QtLocation -> QtPositioning * Source/sync.profile: Source/WebKit: QtLocation -> QtPositioning * WebKit1.pri: Source/WebKit/qt: QtLocation -> QtPositioning * WebCoreSupport/GeolocationClientQt.cpp: Source/WebKit2: QtLocation -> QtPositioning * Target.pri: * UIProcess/qt/WebGeolocationProviderQt.cpp: * WebKit2.pri: Tools: QtLocation -> QtPositioning. Make sure we set build type before doing configure checks that might depend on them. * qmake/mkspecs/features/default_pre.prf: * qmake/mkspecs/features/features.prf: Change-Id: I96a16559373a21513c4d83e53b6cee9f27682649 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@156395 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Allan Sandfeld Jensen Signed-off-by: Ricardo Salveti de Araujo --- Source/WebKit/WebKit1.pri | 2 +- Source/WebKit/qt/WebCoreSupport/GeolocationClientQt.cpp | 2 +- Source/WebKit2/Target.pri | 2 +- Source/WebKit2/UIProcess/qt/WebGeolocationProviderQt.cpp | 2 +- Source/WebKit2/WebKit2.pri | 2 +- Source/sync.profile | 1 + Tools/qmake/mkspecs/features/default_pre.prf | 16 ++++++++-------- Tools/qmake/mkspecs/features/features.prf | 4 +--- Tools/qmake/mkspecs/features/features.pri | 6 +++--- 9 files changed, 18 insertions(+), 19 deletions(-) diff --git a/Source/WebKit/WebKit1.pri b/Source/WebKit/WebKit1.pri index ec1f063..949674a 100644 --- a/Source/WebKit/WebKit1.pri +++ b/Source/WebKit/WebKit1.pri @@ -22,7 +22,7 @@ enable?(DEVICE_ORIENTATION)|enable?(ORIENTATION_EVENTS) { QT += sensors } -enable?(GEOLOCATION): QT += location +enable?(GEOLOCATION): QT += positioning contains(CONFIG, texmap): DEFINES += WTF_USE_TEXTURE_MAPPER=1 diff --git a/Source/WebKit/qt/WebCoreSupport/GeolocationClientQt.cpp b/Source/WebKit/qt/WebCoreSupport/GeolocationClientQt.cpp index 26d1b40..b4c5189 100644 --- a/Source/WebKit/qt/WebCoreSupport/GeolocationClientQt.cpp +++ b/Source/WebKit/qt/WebCoreSupport/GeolocationClientQt.cpp @@ -36,7 +36,7 @@ #include "QWebFrameAdapter.h" #include "QWebPageAdapter.h" -#include +#include namespace WebCore { diff --git a/Source/WebKit2/Target.pri b/Source/WebKit2/Target.pri index aeefade..3295b21 100644 --- a/Source/WebKit2/Target.pri +++ b/Source/WebKit2/Target.pri @@ -936,7 +936,7 @@ enable?(TOUCH_EVENTS) { } -enable?(GEOLOCATION): QT += location +enable?(GEOLOCATION): QT += positioning use?(3D_GRAPHICS): WEBKIT += angle diff --git a/Source/WebKit2/UIProcess/qt/WebGeolocationProviderQt.cpp b/Source/WebKit2/UIProcess/qt/WebGeolocationProviderQt.cpp index 8b87f0a..d091d03 100644 --- a/Source/WebKit2/UIProcess/qt/WebGeolocationProviderQt.cpp +++ b/Source/WebKit2/UIProcess/qt/WebGeolocationProviderQt.cpp @@ -22,7 +22,7 @@ #include "WebGeolocationProviderQt.h" #if ENABLE(GEOLOCATION) -#include +#include namespace WebKit { diff --git a/Source/WebKit2/WebKit2.pri b/Source/WebKit2/WebKit2.pri index 9dfe535..d5327b0 100644 --- a/Source/WebKit2/WebKit2.pri +++ b/Source/WebKit2/WebKit2.pri @@ -84,4 +84,4 @@ linux-*: { have?(QTQUICK): QT += qml quick -enable?(GEOLOCATION): QT += location +enable?(GEOLOCATION): QT += positioning diff --git a/Source/sync.profile b/Source/sync.profile index 482cbcc..0a4ed8c 100644 --- a/Source/sync.profile +++ b/Source/sync.profile @@ -22,4 +22,5 @@ "qtxmlpatterns" => "", "qtdeclarative" => "", "qtjsbackend" => "", + "qtlocation" => "", ); diff --git a/Tools/qmake/mkspecs/features/default_pre.prf b/Tools/qmake/mkspecs/features/default_pre.prf index 57513ac..0ec3b7a 100644 --- a/Tools/qmake/mkspecs/features/default_pre.prf +++ b/Tools/qmake/mkspecs/features/default_pre.prf @@ -62,6 +62,14 @@ win32-msvc*: MAKEFILE_NOOP_COMMAND = @echo >NUL scratchbox: PYTHON = python2.6 else: PYTHON = python +# We use private_tests to detect developer build, since the destdir will +# always be our webkit build dir. This might change as configure changes. +contains(QT_CONFIG, private_tests): CONFIG += qt_developer_build + +# By default we enable "production build", and build-webkit, which is +# used by bots and developers, will disable it, to enable warnings etc. +CONFIG += production_build + # Run configure before making decisions that depend on the result root_project_file { load(configure) @@ -74,20 +82,12 @@ unix:config_gccdepends { CONFIG += GNUmake gcc_MD_depends } -# We use private_tests to detect developer build, since the destdir will -# always be our webkit build dir. This might change as configure changes. -contains(QT_CONFIG, private_tests): CONFIG += qt_developer_build - # Set some defaults for specific platforms CONFIG += include_webinspector # Make sure we process the PKGCONFIG variable if applicable !mac: CONFIG += link_pkgconfig -# By default we enable "production build", and build-webkit, which is -# used by bots and developers, will disable it, to enable warnings etc. -CONFIG += production_build - # Limit the creation of thin archives to Linux, since only GNU's ar supports it. !debug_and_release:linux-g++*: CONFIG += gnu_thin_archives diff --git a/Tools/qmake/mkspecs/features/features.prf b/Tools/qmake/mkspecs/features/features.prf index ddbccf9..5946223 100644 --- a/Tools/qmake/mkspecs/features/features.prf +++ b/Tools/qmake/mkspecs/features/features.prf @@ -36,6 +36,7 @@ defineTest(detectFeatures) { haveQtModule(printsupport): WEBKIT_CONFIG += have_qtprintsupport haveQtModule(widgets): WEBKIT_CONFIG += have_qstyle haveQtModule(testlib): WEBKIT_CONFIG += have_qttestlib + haveQtModule(positioning): WEBKIT_CONFIG += have_qtpositioning geolocation config_libxml2: WEBKIT_CONFIG += use_libxml2 config_libxslt: WEBKIT_CONFIG += xslt @@ -94,9 +95,6 @@ defineTest(detectFeatures) { # Enable CSS shaders when CSS filters and WebGL are enabled enable?(css_filters):enable?(webgl): WEBKIT_CONFIG += css_shaders - # Geolocation support if QtMobility exists - haveQtModule(location): WEBKIT_CONFIG += geolocation - # Orientation support haveQtModule(sensors): WEBKIT_CONFIG += orientation_events device_orientation diff --git a/Tools/qmake/mkspecs/features/features.pri b/Tools/qmake/mkspecs/features/features.pri index 91a34cf..5236b71 100644 --- a/Tools/qmake/mkspecs/features/features.pri +++ b/Tools/qmake/mkspecs/features/features.pri @@ -41,7 +41,7 @@ FEATURE_DEFAULTS = \ ENABLE_DATALIST_ELEMENT=1 \ ENABLE_DATA_TRANSFER_ITEMS=0 \ ENABLE_DETAILS_ELEMENT=1 \ - ENABLE_DEVICE_ORIENTATION=0 \ + ENABLE_DEVICE_ORIENTATION=1 \ ENABLE_DIRECTORY_UPLOAD=0 \ ENABLE_DOWNLOAD_ATTRIBUTE=0 \ ENABLE_FAST_MOBILE_SCROLLING=1 \ @@ -50,7 +50,7 @@ FEATURE_DEFAULTS = \ ENABLE_FTPDIR=1 \ ENABLE_FULLSCREEN_API=1 \ ENABLE_GAMEPAD=0 \ - ENABLE_GEOLOCATION=0 \ + ENABLE_GEOLOCATION=1 \ ENABLE_GESTURE_EVENTS=1 \ ENABLE_HIGH_DPI_CANVAS=0 \ ENABLE_ICONDATABASE=1 \ @@ -85,7 +85,7 @@ FEATURE_DEFAULTS = \ ENABLE_NETSCAPE_PLUGIN_API=0 \ ENABLE_NETWORK_INFO=0 \ ENABLE_NOTIFICATIONS=1 \ - ENABLE_ORIENTATION_EVENTS=0 \ + ENABLE_ORIENTATION_EVENTS=1 \ ENABLE_PAGE_VISIBILITY_API=1 \ ENABLE_PROGRESS_ELEMENT=1 \ ENABLE_PROXIMITY_EVENTS=0 \ -- 1.9.0 debian/patches/devicePixelResolution.patch0000664000000000000000000000171612312273072016171 0ustar Description: Allow env var QTWEBKIT_DPR to define a default init value Author: Christian Dywan Origin: vendor Forwarded: not-needed --- wk-5.0.orig/Source/WebCore/page/Page.cpp +++ wk-5.0/Source/WebCore/page/Page.cpp @@ -143,7 +143,7 @@ Page::Page(PageClients& pageClients) , m_areMemoryCacheClientCallsEnabled(true) , m_mediaVolume(1) , m_pageScaleFactor(1) - , m_deviceScaleFactor(1) + , m_deviceScaleFactor(atof(getenv("QTWEBKIT_DPR")?getenv("QTWEBKIT_DPR"):"1.0")) , m_suppressScrollbarAnimations(false) , m_didLoadUserStyleSheet(false) , m_userStyleSheetModificationTime(0) @@ -678,7 +678,7 @@ void Page::setDeviceScaleFactor(float sc if (m_deviceScaleFactor == scaleFactor) return; - m_deviceScaleFactor = scaleFactor; + m_deviceScaleFactor = atof(getenv("QTWEBKIT_DPR")?getenv("QTWEBKIT_DPR"):"1.0"); setNeedsRecalcStyleInAllFrames(); #if USE(ACCELERATED_COMPOSITING) debian/patches/0004-Qt-Enable-QML-handling-of-crashed-unresponsive-QtWeb.patch0000664000000000000000000001564612312273072024004 0ustar From 9861941bb7d4438d1d4e7971bce431b89de0584a Mon Sep 17 00:00:00 2001 From: Milian Wolff Date: Tue, 27 Aug 2013 17:23:41 +0200 Subject: [PATCH 4/8] [Qt] Enable QML handling of crashed/unresponsive QtWebProcess https://bugs.webkit.org/show_bug.cgi?id=108474 Forward the processDidCrash, didRelaunchProcess, processDidBecomeUnresponsive and processDidBecomeResponsive signals to QML's WebView.experimental. Reviewed by Jocelyn Turcotte. * UIProcess/API/qt/qquickwebview.cpp: (QQuickWebViewPrivate::processDidCrash): (QQuickWebViewPrivate::didRelaunchProcess): (QQuickWebViewPrivate::processDidBecomeUnresponsive): (QQuickWebViewPrivate::processDidBecomeResponsive): * UIProcess/API/qt/qquickwebview_p.h: * UIProcess/API/qt/qquickwebview_p_p.h: (QQuickWebViewPrivate): NOTE: This is the initial iteration of the patch attached to upstream bug report 108474, i.e.: https://bug-108474-attachments.webkit.org/attachment.cgi?id=185771 The actually committed version is incompatible with the status of QtWebKit stable as the architecture changed too much. Change-Id: I91d28dde2774fd1487a96ac36a14b522ffb7756c git-svn-id: http://svn.webkit.org/repository/webkit/trunk@153580 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Jocelyn Turcotte --- Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp | 24 ++++++++++++++++++++++ Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h | 5 +++++ .../WebKit2/UIProcess/API/qt/qquickwebview_p_p.h | 2 ++ .../WebKit2/UIProcess/qt/QtWebPageLoadClient.cpp | 22 ++++++++++++++++++++ Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.h | 4 ++++ 5 files changed, 57 insertions(+) diff --git a/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp b/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp index c5827b2..690be32 100644 --- a/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp +++ b/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp @@ -485,16 +485,40 @@ void QQuickWebViewPrivate::processDidCrash() loadProgressDidChange(100); emit q->loadingChanged(&loadRequest); } + + emit q->experimental()->processDidCrash(); } void QQuickWebViewPrivate::didRelaunchProcess() { + Q_Q(QQuickWebView); + qWarning("WARNING: The web process has been successfully restarted."); webPageProxy->drawingArea()->setSize(viewSize(), IntSize()); updateViewportSize(); updateUserScripts(); + + emit q->experimental()->didRelaunchProcess(); +} + +void QQuickWebViewPrivate::processDidBecomeUnresponsive() +{ + Q_Q(QQuickWebView); + + qWarning("WARNING: The web process has become unresponsive."); + + emit q->experimental()->processDidBecomeUnresponsive(); +} + +void QQuickWebViewPrivate::processDidBecomeResponsive() +{ + Q_Q(QQuickWebView); + + qWarning("WARNING: The web process has become responsive."); + + emit q->experimental()->processDidBecomeResponsive(); } PassOwnPtr QQuickWebViewPrivate::createDrawingAreaProxy() diff --git a/Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h b/Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h index 8de0bc1..b53171f 100644 --- a/Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h +++ b/Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h @@ -378,6 +378,11 @@ Q_SIGNALS: void preferredMinimumContentsWidthChanged(); void remoteInspectorUrlChanged(); + void processDidCrash(); + void didRelaunchProcess(); + void processDidBecomeUnresponsive(); + void processDidBecomeResponsive(); + private: QQuickWebViewExperimental(QQuickWebView* webView, QQuickWebViewPrivate* webViewPrivate); QQuickWebView* q_ptr; diff --git a/Source/WebKit2/UIProcess/API/qt/qquickwebview_p_p.h b/Source/WebKit2/UIProcess/API/qt/qquickwebview_p_p.h index adedb6a..2a46d5c 100644 --- a/Source/WebKit2/UIProcess/API/qt/qquickwebview_p_p.h +++ b/Source/WebKit2/UIProcess/API/qt/qquickwebview_p_p.h @@ -133,6 +133,8 @@ public: virtual void pageDidRequestScroll(const QPoint& pos) { } void processDidCrash(); void didRelaunchProcess(); + void processDidBecomeUnresponsive(); + void processDidBecomeResponsive(); PassOwnPtr createDrawingAreaProxy(); void handleDownloadRequest(WebKit::DownloadProxy*); diff --git a/Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.cpp b/Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.cpp index b877ca8..9f90212 100644 --- a/Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.cpp +++ b/Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.cpp @@ -47,6 +47,8 @@ QtWebPageLoadClient::QtWebPageLoadClient(WKPageRef pageRef, QQuickWebView* webVi loadClient.didChangeProgress = didChangeProgress; loadClient.didFinishProgress = didFinishProgress; loadClient.didChangeBackForwardList = didChangeBackForwardList; + loadClient.processDidBecomeUnresponsive = processDidBecomeUnresponsive; + loadClient.processDidBecomeResponsive = processDidBecomeResponsive; WKPageSetPageLoaderClient(pageRef, &loadClient); } @@ -88,6 +90,16 @@ void QtWebPageLoadClient::didChangeBackForwardList() m_webView->d_func()->backForwardListDidChange(); } +void QtWebPageLoadClient::processDidBecomeUnresponsive() +{ + m_webView->d_func()->processDidBecomeUnresponsive(); +} + +void QtWebPageLoadClient::processDidBecomeResponsive() +{ + m_webView->d_func()->processDidBecomeResponsive(); +} + void QtWebPageLoadClient::dispatchLoadSucceeded() { m_webView->d_func()->loadDidSucceed(); @@ -213,4 +225,14 @@ void QtWebPageLoadClient::didChangeBackForwardList(WKPageRef, WKBackForwardListI toQtWebPageLoadClient(clientInfo)->didChangeBackForwardList(); } +void QtWebPageLoadClient::processDidBecomeUnresponsive(WKPageRef, const void* clientInfo) +{ + toQtWebPageLoadClient(clientInfo)->processDidBecomeUnresponsive(); +} + +void QtWebPageLoadClient::processDidBecomeResponsive(WKPageRef, const void* clientInfo) +{ + toQtWebPageLoadClient(clientInfo)->processDidBecomeResponsive(); +} + } // namespace Webkit diff --git a/Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.h b/Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.h index 668bac1..fd49543 100644 --- a/Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.h +++ b/Source/WebKit2/UIProcess/qt/QtWebPageLoadClient.h @@ -48,6 +48,8 @@ private: void didReceiveTitle(); void didChangeProgress(int); void didChangeBackForwardList(); + void processDidBecomeUnresponsive(); + void processDidBecomeResponsive(); void dispatchLoadSucceeded(); void dispatchLoadStopped(); @@ -67,6 +69,8 @@ private: static void didChangeProgress(WKPageRef, const void* clientInfo); static void didFinishProgress(WKPageRef, const void* clientInfo); static void didChangeBackForwardList(WKPageRef, WKBackForwardListItemRef, WKArrayRef, const void *clientInfo); + static void processDidBecomeUnresponsive(WKPageRef, const void* clientInfo); + static void processDidBecomeResponsive(WKPageRef, const void* clientInfo); QQuickWebView* m_webView; }; -- 1.9.0 debian/patches/0002-adjust-to-new-MODULE_-variable-semantics.patch0000664000000000000000000000277712312273072021625 0ustar From 395f74c7e0f870bb1a248cf7b558917561e81f3b Mon Sep 17 00:00:00 2001 From: Oswald Buddenhagen Date: Sun, 9 Jun 2013 21:30:54 +0200 Subject: [PATCH 2/8] adjust to new MODULE_* variable semantics Change-Id: Ida3da49e2df10edf72d9de6b717925bd6c4ac77e Reviewed-by: Jocelyn Turcotte --- Source/api.pri | 4 +--- Source/widgetsapi.pri | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Source/api.pri b/Source/api.pri index 5e09f3d..628a49b 100644 --- a/Source/api.pri +++ b/Source/api.pri @@ -33,9 +33,7 @@ CONFIG += creating_module # the QtWebKit library, and will end up in the library's prl file. QT_API_DEPENDS = core gui network -# We want the QtWebKit API forwarding includes to live in the root build dir. -MODULE_BASE_DIR = $$_PRO_FILE_PWD_ -MODULE_BASE_OUTDIR = $$ROOT_BUILD_DIR +MODULE_SYNCQT_DIR = $$_PRO_FILE_PWD_ QMAKE_DOCS = $$PWD/qtwebkit.qdocconf diff --git a/Source/widgetsapi.pri b/Source/widgetsapi.pri index 5026274..9504d91 100644 --- a/Source/widgetsapi.pri +++ b/Source/widgetsapi.pri @@ -48,9 +48,7 @@ WEBKIT += javascriptcore wtf webcore MODULE = webkitwidgets -# We want the QtWebKit API forwarding includes to live in the root build dir. -MODULE_BASE_DIR = $$_PRO_FILE_PWD_ -MODULE_BASE_OUTDIR = $$ROOT_BUILD_DIR +MODULE_SYNCQT_DIR = $$_PRO_FILE_PWD_ # This is the canonical list of dependencies for the public API of # the QtWebKitWidgets library, and will end up in the library's prl file. -- 1.9.0 debian/patches/hurd.diff0000664000000000000000000000204212312273072012410 0ustar Author: Pino Toscano Description: fix (workaround) build on GNU/Hurd Apparently PTHREAD_MUTEX_NORMAL and PTHREAD_MUTEX_DEFAULT cannot be used in preprocessor expressions, so temporarly use directly the code which would be used on GNU/Hurd. Origin: vendor Forwarded: not-needed Last-Update: 2011-12-30 --- Source/JavaScriptCore/wtf/FastMalloc.cpp | 4 ++++ 1 file changed, 4 insertions(+) --- a/Source/WTF/wtf/FastMalloc.cpp +++ b/Source/WTF/wtf/FastMalloc.cpp @@ -1744,6 +1744,9 @@ ALWAYS_INLINE void TCMalloc_PageHeap::su void TCMalloc_PageHeap::initializeScavenger() { // Create a non-recursive mutex. +#if defined(__GNU__) + pthread_mutex_init(&m_scavengeMutex, 0); +#else #if !defined(PTHREAD_MUTEX_NORMAL) || PTHREAD_MUTEX_NORMAL == PTHREAD_MUTEX_DEFAULT pthread_mutex_init(&m_scavengeMutex, 0); #else @@ -1755,6 +1758,7 @@ void TCMalloc_PageHeap::initializeScaven pthread_mutexattr_destroy(&attr); #endif +#endif pthread_cond_init(&m_scavengeCondition, 0); m_scavengeThreadActive = true; debian/patches/series0000664000000000000000000000202012312273072012025 0ustar # webkit upstream patches LLIntCLoop32BigEndian.patch file_access.patch bug_118860_qtwebkit_511.patch # debian patches 05_sparc_unaligned_access.diff stabs_format_debug_info.diff no_gc_sections.diff hurd.diff webkit_qt_hide_symbols.diff # ubuntu patches devicePixelResolution.patch add_experimentalDevicePixelRatio.patch gstreamer-build-issue-gst10.patch webkit-119798.patch # From QtWebKit 5.2 0001-Qt-memory-leak-in-WebCore-FontCache-getLastResortFal.patch 0002-adjust-to-new-MODULE_-variable-semantics.patch 0003-Assertion-while-scrolling-news.google.com.patch 0004-Qt-Enable-QML-handling-of-crashed-unresponsive-QtWeb.patch 0005-JSC-ARM-traditional-failing-on-Octane-NavierStokes-t.patch 0006-Update-location-of-qaccessiblewidget.h.patch 0007-Fix-build-with-namespaced-Qt.patch 0008-arm-Inverted-src-and-dest-FP-registers-in-DFG-specul.patch 0009-Qt-Fix-build-with-Qt-5.2-QtPosition-module.patch aarch64.patch # Can be dropped with QtWebKit 5.2 disable_jit.patch # From QtWebKit 5.3 dont_pollute_pri_and_pc_with_private_deps.patch debian/patches/0003-Assertion-while-scrolling-news.google.com.patch0000664000000000000000000000316212312273072022272 0ustar From 0eb114a591268c5c61a230321ee9821b09fe28f1 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Tue, 27 Aug 2013 12:01:11 +0200 Subject: [PATCH 3/8] Assertion while scrolling news.google.com https://bugs.webkit.org/show_bug.cgi?id=115303 Reviewed by Anders Carlsson. Do not relayout when accessing script elements during painting. * html/HTMLEmbedElement.cpp: (WebCore::HTMLEmbedElement::renderWidgetForJSBindings): Task-number: QTBUG-30892 Change-Id: Ide884c78dd6a359c0e0de22bb98774d7da90b901 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@154672 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Simon Hausmann --- Source/WebCore/html/HTMLEmbedElement.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/WebCore/html/HTMLEmbedElement.cpp b/Source/WebCore/html/HTMLEmbedElement.cpp index 9176d95..ba830f0 100644 --- a/Source/WebCore/html/HTMLEmbedElement.cpp +++ b/Source/WebCore/html/HTMLEmbedElement.cpp @@ -28,6 +28,7 @@ #include "CSSPropertyNames.h" #include "DocumentLoader.h" #include "Frame.h" +#include "FrameView.h" #include "HTMLDocument.h" #include "HTMLImageLoader.h" #include "HTMLNames.h" @@ -70,7 +71,9 @@ static inline RenderWidget* findWidgetRenderer(const Node* n) RenderWidget* HTMLEmbedElement::renderWidgetForJSBindings() const { - document()->updateLayoutIgnorePendingStylesheets(); + FrameView* view = document()->view(); + if (!view || (!view->isInLayout() && !view->isPainting())) + document()->updateLayoutIgnorePendingStylesheets(); return findWidgetRenderer(this); } -- 1.9.0 debian/patches/0001-Qt-memory-leak-in-WebCore-FontCache-getLastResortFal.patch0000664000000000000000000000335712312273072024034 0ustar From f598f92fe48f84b4e422a6a9e5a5cc4cb6313102 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Mon, 19 Aug 2013 12:57:44 +0200 Subject: [PATCH 1/8] [Qt] memory leak in WebCore::FontCache::getLastResortFallbackFont https://bugs.webkit.org/show_bug.cgi?id=118532 Reviewed by Jocelyn Turcotte. We don't need to allocate FontPlatformData on the heap since getCachedFontData makes a deep copy anyway. * platform/graphics/qt/FontCacheQt.cpp: (WebCore::FontCache::getLastResortFallbackFont): Change-Id: I02e974e53f36dd01a4b43a21cc98651913c0d515 git-svn-id: http://svn.webkit.org/repository/webkit/trunk@154103 268f45cc-cd09-0410-ab3c-d52691b4dbfc Reviewed-by: Jocelyn Turcotte --- Source/WebCore/platform/graphics/qt/FontCacheQt.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/WebCore/platform/graphics/qt/FontCacheQt.cpp b/Source/WebCore/platform/graphics/qt/FontCacheQt.cpp index 6d1ee72..55a0f82 100644 --- a/Source/WebCore/platform/graphics/qt/FontCacheQt.cpp +++ b/Source/WebCore/platform/graphics/qt/FontCacheQt.cpp @@ -81,7 +81,8 @@ PassRefPtr FontCache::getSimilarFontPlatformData(const Font& fon PassRefPtr FontCache::getLastResortFallbackFont(const FontDescription& fontDescription, ShouldRetain shouldRetain) { const AtomicString fallbackFamily = QFont(fontDescription.family().family()).lastResortFamily(); - return getCachedFontData(new FontPlatformData(fontDescription, fallbackFamily), shouldRetain); + FontPlatformData platformData(fontDescription, fallbackFamily); + return getCachedFontData(&platformData, shouldRetain); } void FontCache::getTraitsInFamily(const AtomicString&, Vector&) -- 1.9.0 debian/patches/no_gc_sections.diff0000664000000000000000000000206712312273072014451 0ustar Description: do not pass -Wl,--gc-sections on powerpc, s390, arm*, mips*, iX86 when building libQtWebKit.so; works around a binutils bug that results in a segfault on powerpc, internal link error on s390 and OOM on armel/mipsel. Author: Steve Langasek Author: Modestas Vainius Author: Timo Jyrinki Origin: vendor Forwarded: no Last-Update: 2013-02-07 (add i686) --- Source/WebCore/WebCore.pri | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Source/WebCore/WebCore.pri +++ b/Source/WebCore/WebCore.pri @@ -289,7 +289,7 @@ mac { unix:!mac:*-g++*:QMAKE_CXXFLAGS += -ffunction-sections } unix:!mac:*-g++*:QMAKE_CXXFLAGS += -fdata-sections -unix:!mac:*-g++*:QMAKE_LFLAGS += -Wl,--gc-sections +unix:!mac:*-g++*:!equals(QT_ARCH, powerpc):!equals(QT_ARCH, s390):!equals(QT_ARCH, mips):!equals(QT_ARCH, arm):!equals(QT_ARCH, i386):!equals(QT_ARCH, i686):QMAKE_LFLAGS += -Wl,--gc-sections linux*-g++*:QMAKE_LFLAGS += $$QMAKE_LFLAGS_NOUNDEF contains(DEFINES, ENABLE_OPENCL=1) { debian/patches/gstreamer-build-issue-gst10.patch0000664000000000000000000000145212312273072017011 0ustar Description: gstreamer: fix build issue with gst 1.0 as fullscreen is not yet supported Origin: vendor Forwarded: not-needed diff --git a/Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowPrivate.h b/Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowPrivate.h index f48ff83..f5d841f 100644 --- a/Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowPrivate.h +++ b/Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowPrivate.h @@ -25,6 +25,8 @@ #include +#if ENABLE(VIDEO) && USE(GSTREAMER) && !defined(GST_API_VERSION_1) + namespace WebCore { class HTMLVideoElement; @@ -55,5 +57,6 @@ private: } // namespace WebCore +#endif /* #if ENABLE(VIDEO) && USE(GSTREAMER) && !defined(GST_API_VERSION_1) */ #endif // PlatformVideoWindowPrivate_h debian/patches/add_experimentalDevicePixelRatio.patch0000664000000000000000000006754612312273072020307 0ustar Description: Add the experimentalDevicePixelRatio API again This is basically a revert of 69e9b8 + c2c5952, which removes the experimental API. . QtWebKit now queries the platform plugin for the devicePixelRatio property, and it's up to the plugin to return the correct value (there's no way to programatically set it anymore, see http://qt-project.org/doc/qt-5.0/qtgui/qwindow.html#devicePixelRatio). . The correct and upstreamable way to fix this will be to ensure that our platform plugin re-implements this method (which defaults to returning 1.0). Origin: vendor Forwarded: not-needed diff --git a/Source/WebKit2/UIProcess/API/qt/qquickwebpage.cpp b/Source/WebKit2/UIProcess/API/qt/qquickwebpage.cpp index a7d74b2..0f12a4e 100644 --- a/Source/WebKit2/UIProcess/API/qt/qquickwebpage.cpp +++ b/Source/WebKit2/UIProcess/API/qt/qquickwebpage.cpp @@ -86,23 +86,12 @@ QSGNode* QQuickWebPage::updatePaintNode(QSGNode* oldNode, UpdatePaintNodeData*) QtWebPageSGNode* node = static_cast(oldNode); - const QWindow* window = this->window(); - ASSERT(window); - - if (window && d->webPageProxy->deviceScaleFactor() != window->devicePixelRatio()) { - d->webPageProxy->setIntrinsicDeviceScaleFactor(window->devicePixelRatio()); - // This signal is queued since if we are running a threaded renderer. This might cause failures - // if tests are reading the new value between the property change and the signal emission. - emit d->viewportItem->experimental()->test()->devicePixelRatioChanged(); - } - if (!node) - node = new QtWebPageSGNode; + node = new QtWebPageSGNode(); node->setRenderer(renderer); node->setScale(d->contentsScale); - node->setDevicePixelRatio(window->devicePixelRatio()); QColor backgroundColor = d->webPageProxy->drawsTransparentBackground() ? Qt::transparent : Qt::white; QRectF backgroundRect(QPointF(0, 0), d->contentsSize); node->setBackground(backgroundRect, backgroundColor); diff --git a/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp b/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp index c3e372b..c5827b2 100644 --- a/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp +++ b/Source/WebKit2/UIProcess/API/qt/qquickwebview.cpp @@ -280,6 +280,7 @@ QQuickWebViewPrivate::QQuickWebViewPrivate(QQuickWebView* viewport) viewport->setPixelAligned(true); QObject::connect(viewport, SIGNAL(visibleChanged()), viewport, SLOT(_q_onVisibleChanged())); QObject::connect(viewport, SIGNAL(urlChanged()), viewport, SLOT(_q_onUrlChanged())); + QObject::connect(experimental, SIGNAL(devicePixelRatioChanged()), experimental->test(), SIGNAL(devicePixelRatioChanged())); pageView.reset(new QQuickWebPage(viewport)); } @@ -827,15 +828,16 @@ void QQuickWebViewLegacyPrivate::updateViewportSize() if (viewportSize.isEmpty()) return; + float devicePixelRatio = webPageProxy->deviceScaleFactor(); pageView->setContentsSize(viewportSize); + // Make sure that our scale matches the one passed to setVisibleContentsRect. + pageView->setContentsScale(devicePixelRatio); // The fixed layout is handled by the FrameView and the drawing area doesn't behave differently // whether its fixed or not. We still need to tell the drawing area which part of it // has to be rendered on tiles, and in desktop mode it's all of it. - webPageProxy->drawingArea()->setSize(viewportSize.toSize(), IntSize()); - // The backing store scale factor should already be set to the device pixel ratio - // of the underlying window, thus we set the effective scale to 1 here. - webPageProxy->drawingArea()->setVisibleContentsRect(FloatRect(FloatPoint(), FloatSize(viewportSize)), 1, FloatPoint()); + webPageProxy->drawingArea()->setSize((viewportSize / devicePixelRatio).toSize(), IntSize()); + webPageProxy->drawingArea()->setVisibleContentsRect(FloatRect(FloatPoint(), FloatSize(viewportSize / devicePixelRatio)), devicePixelRatio, FloatPoint()); } qreal QQuickWebViewLegacyPrivate::zoomFactor() const @@ -867,6 +869,11 @@ void QQuickWebViewFlickablePrivate::onComponentComplete() m_pageViewportController.reset(new PageViewportController(webPageProxy.get(), m_pageViewportControllerClient.data())); pageView->eventHandler()->setViewportController(m_pageViewportControllerClient.data()); + // Notify about device pixel ratio here because due to the delayed instantiation + // of the viewport controller the correct value might not have reached QWebKitTest + // in time it was used from QML. + emit experimental->test()->devicePixelRatioChanged(); + // Trigger setting of correct visibility flags after everything was allocated and initialized. _q_onVisibleChanged(); } @@ -1194,6 +1201,59 @@ void QQuickWebViewExperimental::setUserAgent(const QString& userAgent) /*! \internal + \qmlproperty real WebViewExperimental::devicePixelRatio + \brief The ratio between the CSS units and device pixels when the content is unscaled. + + When designing touch-friendly contents, knowing the approximated target size on a device + is important for contents providers in order to get the intented layout and element + sizes. + + As most first generation touch devices had a PPI of approximately 160, this became a + de-facto value, when used in conjunction with the viewport meta tag. + + Devices with a higher PPI learning towards 240 or 320, applies a pre-scaling on all + content, of either 1.5 or 2.0, not affecting the CSS scale or pinch zooming. + + This value can be set using this property and it is exposed to CSS media queries using + the -webkit-device-pixel-ratio query. + + For instance, if you want to load an image without having it upscaled on a web view + using a device pixel ratio of 2.0 it can be done by loading an image of say 100x100 + pixels but showing it at half the size. + + FIXME: Move documentation example out in separate files + + @media (-webkit-min-device-pixel-ratio: 1.5) { + .icon { + width: 50px; + height: 50px; + url: "/images/icon@2x.png"; // This is actually a 100x100 image + } + } + + If the above is used on a device with device pixel ratio of 1.5, it will be scaled + down but still provide a better looking image. +*/ + +qreal QQuickWebViewExperimental::devicePixelRatio() const +{ + Q_D(const QQuickWebView); + return d->webPageProxy->deviceScaleFactor(); +} + +void QQuickWebViewExperimental::setDevicePixelRatio(qreal devicePixelRatio) +{ + Q_D(QQuickWebView); + if (0 >= devicePixelRatio || devicePixelRatio == this->devicePixelRatio()) + return; + + d->webPageProxy->setIntrinsicDeviceScaleFactor(devicePixelRatio); + emit devicePixelRatioChanged(); +} + +/*! + \internal + \qmlproperty int WebViewExperimental::deviceWidth \brief The device width used by the viewport calculations. diff --git a/Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h b/Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h index 1b372fa..8de0bc1 100644 --- a/Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h +++ b/Source/WebKit2/UIProcess/API/qt/qquickwebview_p.h @@ -256,6 +256,7 @@ class QWEBKIT_EXPORT QQuickWebViewExperimental : public QObject { Q_PROPERTY(int preferredMinimumContentsWidth WRITE setPreferredMinimumContentsWidth READ preferredMinimumContentsWidth NOTIFY preferredMinimumContentsWidthChanged) Q_PROPERTY(int deviceWidth WRITE setDeviceWidth READ deviceWidth NOTIFY deviceWidthChanged) Q_PROPERTY(int deviceHeight WRITE setDeviceHeight READ deviceHeight NOTIFY deviceHeightChanged) + Q_PROPERTY(qreal devicePixelRatio READ devicePixelRatio WRITE setDevicePixelRatio NOTIFY devicePixelRatioChanged) Q_PROPERTY(QWebNavigationHistory* navigationHistory READ navigationHistory CONSTANT FINAL) @@ -311,6 +312,8 @@ public: void setDeviceWidth(int); int deviceHeight() const; void setDeviceHeight(int); + qreal devicePixelRatio() const; + void setDevicePixelRatio(qreal); QList userScripts() const; void setUserScripts(const QList& userScripts); QUrl remoteInspectorUrl() const; @@ -367,6 +370,7 @@ Q_SIGNALS: void proxyAuthenticationDialogChanged(); void userAgentChanged(); void deviceWidthChanged(); + void devicePixelRatioChanged(); void deviceHeightChanged(); void enterFullScreenRequested(); void exitFullScreenRequested(); diff --git a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.cpp b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.cpp index 9cb2c1b..ce5a96f 100644 --- a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.cpp +++ b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.cpp @@ -56,11 +56,6 @@ void LayerTreeCoordinatorProxy::updateViewport() m_drawingAreaProxy->updateViewport(); } -float LayerTreeCoordinatorProxy::deviceScaleFactor() const -{ - return m_drawingAreaProxy->page()->deviceScaleFactor(); -} - void LayerTreeCoordinatorProxy::dispatchUpdate(const Function& function) { m_renderer->appendUpdate(function); @@ -183,20 +178,19 @@ void LayerTreeCoordinatorProxy::setAnimationsLocked(bool locked) dispatchUpdate(bind(&LayerTreeRenderer::setAnimationsLocked, m_renderer.get(), locked)); } -void LayerTreeCoordinatorProxy::setVisibleContentsRect(const FloatRect& rect, float pageScaleFactor, const FloatPoint& trajectoryVector) +void LayerTreeCoordinatorProxy::setVisibleContentsRect(const FloatRect& rect, float scale, const FloatPoint& trajectoryVector) { // Inform the renderer to adjust viewport-fixed layers. dispatchUpdate(bind(&LayerTreeRenderer::setVisibleContentsRect, m_renderer.get(), rect)); // Round the rect instead of enclosing it to make sure that its size stays the same while panning. This can have nasty effects on layout. IntRect roundedRect = roundedIntRect(rect); - const float effectiveScale = deviceScaleFactor() * pageScaleFactor; - if (roundedRect == m_lastSentVisibleRect && effectiveScale == m_lastSentScale && trajectoryVector == m_lastSentTrajectoryVector) + if (rect == m_lastSentVisibleRect && scale == m_lastSentScale && trajectoryVector == m_lastSentTrajectoryVector) return; - m_drawingAreaProxy->page()->process()->send(Messages::LayerTreeCoordinator::SetVisibleContentsRect(roundedRect, effectiveScale, trajectoryVector), m_drawingAreaProxy->page()->pageID()); + m_drawingAreaProxy->page()->process()->send(Messages::LayerTreeCoordinator::SetVisibleContentsRect(roundedRect, scale, trajectoryVector), m_drawingAreaProxy->page()->pageID()); m_lastSentVisibleRect = roundedRect; - m_lastSentScale = effectiveScale; + m_lastSentScale = scale; m_lastSentTrajectoryVector = trajectoryVector; } diff --git a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h index a3961ff..fb58b1a 100644 --- a/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h +++ b/Source/WebKit2/UIProcess/CoordinatedGraphics/LayerTreeCoordinatorProxy.h @@ -64,7 +64,7 @@ public: void deleteCompositingLayer(WebLayerID); void setRootCompositingLayer(WebLayerID); void setContentsSize(const WebCore::FloatSize&); - void setVisibleContentsRect(const WebCore::FloatRect&, float pageScaleFactor, const WebCore::FloatPoint& trajectoryVector); + void setVisibleContentsRect(const WebCore::FloatRect&, float scale, const WebCore::FloatPoint& trajectoryVector); void didRenderFrame(const WebCore::IntSize& contentsSize, const WebCore::IntRect& coveredRect); void createTileForLayer(int layerID, int tileID, const WebCore::IntRect&, const SurfaceUpdateInfo&); void updateTileForLayer(int layerID, int tileID, const WebCore::IntRect&, const SurfaceUpdateInfo&); @@ -94,8 +94,6 @@ public: #endif void setBackgroundColor(const WebCore::Color&); - float deviceScaleFactor() const; - protected: void dispatchUpdate(const Function&); diff --git a/Source/WebKit2/UIProcess/PageViewportController.cpp b/Source/WebKit2/UIProcess/PageViewportController.cpp index a34782c..bbee994 100644 --- a/Source/WebKit2/UIProcess/PageViewportController.cpp +++ b/Source/WebKit2/UIProcess/PageViewportController.cpp @@ -46,9 +46,9 @@ PageViewportController::PageViewportController(WebKit::WebPageProxy* proxy, Page , m_minimumScaleToFit(1) , m_initiallyFitToViewport(true) , m_hadUserInteraction(false) - , m_pageScaleFactor(1) + , m_effectiveScale(1) , m_viewportPosIsLocked(false) - , m_pageScaleFactorIsLocked(false) + , m_effectiveScaleIsLocked(false) { // Initializing Viewport Raw Attributes to avoid random negative or infinity scale factors // if there is a race condition between the first layout and setting the viewport attributes for the first time. @@ -67,15 +67,15 @@ PageViewportController::PageViewportController(WebKit::WebPageProxy* proxy, Page float PageViewportController::innerBoundedViewportScale(float viewportScale) const { - return clampTo(viewportScale, m_minimumScaleToFit, m_rawAttributes.maximumScale); + return clampTo(viewportScale, toViewportScale(m_minimumScaleToFit), toViewportScale(m_rawAttributes.maximumScale)); } float PageViewportController::outerBoundedViewportScale(float viewportScale) const { if (m_allowsUserScaling) { // Bounded by [0.1, 10.0] like the viewport meta code in WebCore. - float hardMin = std::max(0.1, 0.5 * m_minimumScaleToFit); - float hardMax = std::min(10, 2 * m_rawAttributes.maximumScale); + float hardMin = toViewportScale(std::max(0.1, 0.5 * m_minimumScaleToFit)); + float hardMax = toViewportScale(std::min(10, 2 * m_rawAttributes.maximumScale)); return clampTo(viewportScale, hardMin, hardMax); } return innerBoundedViewportScale(viewportScale); @@ -144,12 +144,12 @@ void PageViewportController::didRenderFrame(const IntSize& contentsSize, const I // All position and scale changes resulting from a web process event should // go through here to be applied on the viewport to avoid showing incomplete // tiles to the user during a few milliseconds. - if (m_pageScaleFactorIsLocked) { - m_client->setContentsScale(m_pageScaleFactor, false); - m_pageScaleFactorIsLocked = false; + if (m_effectiveScaleIsLocked) { + m_client->setContentsScale(m_effectiveScale, false); + m_effectiveScaleIsLocked = false; } if (m_viewportPosIsLocked) { - FloatPoint clampedPos = clampViewportToContents(m_viewportPos, m_pageScaleFactor); + FloatPoint clampedPos = clampViewportToContents(m_viewportPos, m_effectiveScale); // There might be rendered frames not covering our requested position yet, wait for it. if (FloatRect(clampedPos, viewportSizeInContentsCoordinates()).intersects(coveredRect)) { m_client->setViewportPosition(clampedPos); @@ -163,7 +163,7 @@ void PageViewportController::pageTransitionViewportReady() if (!m_rawAttributes.layoutSize.isEmpty()) { m_hadUserInteraction = false; float initialScale = m_initiallyFitToViewport ? m_minimumScaleToFit : m_rawAttributes.initialScale; - applyScaleAfterRenderingContents(innerBoundedViewportScale(initialScale)); + applyScaleAfterRenderingContents(innerBoundedViewportScale(toViewportScale(initialScale))); } // At this point we should already have received the first viewport arguments and the requested scroll @@ -179,7 +179,7 @@ void PageViewportController::pageDidRequestScroll(const IntPoint& cssPosition) if (m_webPageProxy->areActiveDOMObjectsAndAnimationsSuspended()) return; - FloatRect endVisibleContentRect(clampViewportToContents(cssPosition, m_pageScaleFactor), viewportSizeInContentsCoordinates()); + FloatRect endVisibleContentRect(clampViewportToContents(cssPosition, m_effectiveScale), viewportSizeInContentsCoordinates()); if (m_lastFrameCoveredRect.intersects(endVisibleContentRect)) m_client->setViewportPosition(endVisibleContentRect.location()); else @@ -203,8 +203,8 @@ void PageViewportController::didChangeContentsVisibility(const FloatPoint& viewp { if (!m_viewportPosIsLocked) m_viewportPos = viewportPos; - if (!m_pageScaleFactorIsLocked) - m_pageScaleFactor = viewportScale; + if (!m_effectiveScaleIsLocked) + m_effectiveScale = viewportScale; syncVisibleContents(trajectoryVector); } @@ -215,9 +215,9 @@ void PageViewportController::syncVisibleContents(const FloatPoint& trajectoryVec if (!drawingArea || m_viewportSize.isEmpty() || m_contentsSize.isEmpty()) return; - FloatRect visibleContentsRect(clampViewportToContents(m_viewportPos, m_pageScaleFactor), viewportSizeInContentsCoordinates()); + FloatRect visibleContentsRect(clampViewportToContents(m_viewportPos, m_effectiveScale), viewportSizeInContentsCoordinates()); visibleContentsRect.intersect(FloatRect(FloatPoint::zero(), m_contentsSize)); - drawingArea->setVisibleContentsRect(visibleContentsRect, m_pageScaleFactor, trajectoryVector); + drawingArea->setVisibleContentsRect(visibleContentsRect, m_effectiveScale, trajectoryVector); m_client->didChangeVisibleContents(); } @@ -242,13 +242,13 @@ void PageViewportController::didChangeViewportAttributes(const WebCore::Viewport WebCore::FloatSize PageViewportController::viewportSizeInContentsCoordinates() const { - return WebCore::FloatSize(m_viewportSize.width() / m_pageScaleFactor, m_viewportSize.height() / m_pageScaleFactor); + return WebCore::FloatSize(m_viewportSize.width() / m_effectiveScale, m_viewportSize.height() / m_effectiveScale); } void PageViewportController::applyScaleAfterRenderingContents(float scale) { - m_pageScaleFactor = scale; - m_pageScaleFactorIsLocked = true; + m_effectiveScale = scale; + m_effectiveScaleIsLocked = true; syncVisibleContents(); } @@ -264,9 +264,9 @@ bool PageViewportController::updateMinimumScaleToFit(bool userInitiatedUpdate) if (m_viewportSize.isEmpty() || m_contentsSize.isEmpty()) return false; - bool currentlyScaledToFit = fuzzyCompare(m_pageScaleFactor, m_minimumScaleToFit, 0.001); + bool currentlyScaledToFit = fuzzyCompare(m_effectiveScale, toViewportScale(m_minimumScaleToFit), 0.001); - float minimumScale = WebCore::computeMinimumScaleFactorForContentContained(m_rawAttributes, WebCore::roundedIntSize(m_viewportSize), WebCore::roundedIntSize(m_contentsSize), 1); + float minimumScale = WebCore::computeMinimumScaleFactorForContentContained(m_rawAttributes, WebCore::roundedIntSize(m_viewportSize), WebCore::roundedIntSize(m_contentsSize), devicePixelRatio()); if (minimumScale <= 0) return false; @@ -276,11 +276,11 @@ bool PageViewportController::updateMinimumScaleToFit(bool userInitiatedUpdate) if (!m_webPageProxy->areActiveDOMObjectsAndAnimationsSuspended()) { if (!m_hadUserInteraction || (userInitiatedUpdate && currentlyScaledToFit)) - applyScaleAfterRenderingContents(m_minimumScaleToFit); + applyScaleAfterRenderingContents(toViewportScale(m_minimumScaleToFit)); else { // Ensure the effective scale stays within bounds. - float boundedScale = innerBoundedViewportScale(m_pageScaleFactor); - if (!fuzzyCompare(boundedScale, m_pageScaleFactor, 0.001)) + float boundedScale = innerBoundedViewportScale(m_effectiveScale); + if (!fuzzyCompare(boundedScale, m_effectiveScale, 0.001)) applyScaleAfterRenderingContents(boundedScale); } } diff --git a/Source/WebKit2/UIProcess/PageViewportController.h b/Source/WebKit2/UIProcess/PageViewportController.h index fcc4e17..231b1c1 100644 --- a/Source/WebKit2/UIProcess/PageViewportController.h +++ b/Source/WebKit2/UIProcess/PageViewportController.h @@ -56,7 +56,7 @@ public: float devicePixelRatio() const; float minimumContentsScale() const { return m_minimumScaleToFit; } float maximumContentsScale() const { return m_rawAttributes.maximumScale; } - float currentContentsScale() const { return m_pageScaleFactor; } + float currentContentsScale() const { return fromViewportScale(m_effectiveScale); } void setHadUserInteraction(bool didUserInteract) { m_hadUserInteraction = didUserInteract; } @@ -73,6 +73,8 @@ public: void pageDidRequestScroll(const WebCore::IntPoint& cssPosition); private: + float fromViewportScale(float scale) const { return scale / devicePixelRatio(); } + float toViewportScale(float scale) const { return scale * devicePixelRatio(); } void syncVisibleContents(const WebCore::FloatPoint &trajectoryVector = WebCore::FloatPoint::zero()); void applyScaleAfterRenderingContents(float scale); void applyPositionAfterRenderingContents(const WebCore::FloatPoint& pos); @@ -94,10 +96,10 @@ private: WebCore::FloatSize m_viewportSize; WebCore::FloatSize m_contentsSize; WebCore::IntSize m_clientContentsSize; - float m_pageScaleFactor; + float m_effectiveScale; // Should always be cssScale * devicePixelRatio. bool m_viewportPosIsLocked; - bool m_pageScaleFactorIsLocked; + bool m_effectiveScaleIsLocked; WebCore::FloatRect m_lastFrameCoveredRect; }; diff --git a/Source/WebKit2/UIProcess/qt/PageViewportControllerClientQt.cpp b/Source/WebKit2/UIProcess/qt/PageViewportControllerClientQt.cpp index 6351555..95dee3e 100644 --- a/Source/WebKit2/UIProcess/qt/PageViewportControllerClientQt.cpp +++ b/Source/WebKit2/UIProcess/qt/PageViewportControllerClientQt.cpp @@ -209,12 +209,12 @@ void PageViewportControllerClientQt::focusEditableArea(const QRectF& caretArea, // This can only happen as a result of a user interaction. ASSERT(m_controller->hadUserInteraction()); - const float editingFixedScale = 2; + const float editingFixedScale = 2 * m_controller->devicePixelRatio(); float targetScale = m_controller->innerBoundedViewportScale(editingFixedScale); const QRectF viewportRect = m_viewportItem->boundingRect(); qreal x; - const qreal borderOffset = 10; + const qreal borderOffset = 10 * m_controller->devicePixelRatio(); if ((targetArea.width() + borderOffset) * targetScale <= viewportRect.width()) { // Center the input field in the middle of the view, if it is smaller than // the view at the scale target. @@ -248,12 +248,12 @@ void PageViewportControllerClientQt::zoomToAreaGestureEnded(const QPointF& touch if (m_scrollChange.inProgress() || m_scaleChange.inProgress()) return; - const float margin = 10; // We want at least a little bit of margin. + const float margin = 10 * m_controller->devicePixelRatio(); // We want at least a little bit of margin. QRectF endArea = targetArea.adjusted(-margin, -margin, margin, margin); const QRectF viewportRect = m_viewportItem->boundingRect(); - qreal minViewportScale = qreal(2.5); + qreal minViewportScale = qreal(2.5) * m_controller->devicePixelRatio(); qreal targetScale = viewportRect.size().width() / endArea.size().width(); targetScale = m_controller->innerBoundedViewportScale(qMin(minViewportScale, targetScale)); qreal currentScale = m_pageItem->contentsScale(); @@ -295,7 +295,7 @@ void PageViewportControllerClientQt::zoomToAreaGestureEnded(const QPointF& touch break; case ZoomBack: { if (m_scaleStack.isEmpty()) { - targetScale = m_controller->minimumContentsScale(); + targetScale = m_controller->minimumContentsScale() * m_controller->devicePixelRatio(); endPosition.setY(hotspot.y() - viewportHotspot.y() / targetScale); endPosition.setX(0); m_zoomOutScale = 0; diff --git a/Source/WebKit2/UIProcess/qt/QtWebPageSGNode.cpp b/Source/WebKit2/UIProcess/qt/QtWebPageSGNode.cpp index f536c42..98b4423 100644 --- a/Source/WebKit2/UIProcess/qt/QtWebPageSGNode.cpp +++ b/Source/WebKit2/UIProcess/qt/QtWebPageSGNode.cpp @@ -48,13 +48,7 @@ public: virtual void render(const RenderState& state) { - TransformationMatrix renderMatrix; - if (pageNode()->devicePixelRatio() != 1.0) { - renderMatrix.scale(pageNode()->devicePixelRatio()); - if (matrix()) - renderMatrix.multiply(*matrix()); - } else if (matrix()) - renderMatrix = *matrix(); + QMatrix4x4 renderMatrix = matrix() ? *matrix() : QMatrix4x4(); // When rendering to an intermediate surface, Qt will // mirror the projection matrix to fit on the destination coordinate system. @@ -70,13 +64,6 @@ public: layerTreeRenderer()->purgeGLResources(); } - const QtWebPageSGNode* pageNode() const - { - const QtWebPageSGNode* parent = static_cast(this->parent()); - ASSERT(parent); - return parent; - } - LayerTreeRenderer* layerTreeRenderer() const { return m_renderer.get(); } private: @@ -87,11 +74,7 @@ private: for (const QSGClipNode* clip = clipList(); clip; clip = clip->clipList()) { QMatrix4x4 clipMatrix; - if (pageNode()->devicePixelRatio() != 1.0) { - clipMatrix.scale(pageNode()->devicePixelRatio()); - if (clip->matrix()) - clipMatrix *= (*clip->matrix()); - } else if (clip->matrix()) + if (clip->matrix()) clipMatrix = *clip->matrix(); QRectF currentClip; @@ -132,7 +115,6 @@ private: QtWebPageSGNode::QtWebPageSGNode() : m_contentsNode(0) , m_backgroundNode(new QSGSimpleRectNode) - , m_devicePixelRatio(1) { appendChildNode(m_backgroundNode); } diff --git a/Source/WebKit2/UIProcess/qt/QtWebPageSGNode.h b/Source/WebKit2/UIProcess/qt/QtWebPageSGNode.h index 1bcc28e..8516803 100644 --- a/Source/WebKit2/UIProcess/qt/QtWebPageSGNode.h +++ b/Source/WebKit2/UIProcess/qt/QtWebPageSGNode.h @@ -40,13 +40,10 @@ class QtWebPageSGNode : public QSGTransformNode { void setBackground(const QRectF&, const QColor&); void setScale(float); void setRenderer(PassRefPtr); - qreal devicePixelRatio() const { return m_devicePixelRatio; } - void setDevicePixelRatio(qreal devicePixelRatio) { m_devicePixelRatio = devicePixelRatio; } private: ContentsSGNode* m_contentsNode; QSGSimpleRectNode* m_backgroundNode; - qreal m_devicePixelRatio; }; } // namespace WebKit diff --git a/Source/WebKit2/WebProcess/WebPage/WebPage.cpp b/Source/WebKit2/WebProcess/WebPage/WebPage.cpp index 849c1c1..8c54692 100644 --- a/Source/WebKit2/WebProcess/WebPage/WebPage.cpp +++ b/Source/WebKit2/WebProcess/WebPage/WebPage.cpp @@ -1021,13 +1021,13 @@ void WebPage::sendViewportAttributesChanged() // Recalculate the recommended layout size, when the available size (device pixel) changes. Settings* settings = m_page->settings(); - int minimumLayoutFallbackWidth = std::max(settings->layoutFallbackWidth(), m_viewportSize.width()); + int minimumLayoutFallbackWidth = std::max(settings->layoutFallbackWidth(), int(m_viewportSize.width() / m_page->deviceScaleFactor())); // If unset we use the viewport dimensions. This fits with the behavior of desktop browsers. int deviceWidth = (settings->deviceWidth() > 0) ? settings->deviceWidth() : m_viewportSize.width(); int deviceHeight = (settings->deviceHeight() > 0) ? settings->deviceHeight() : m_viewportSize.height(); - ViewportAttributes attr = computeViewportAttributes(m_page->viewportArguments(), minimumLayoutFallbackWidth, deviceWidth, deviceHeight, 1, m_viewportSize); + ViewportAttributes attr = computeViewportAttributes(m_page->viewportArguments(), minimumLayoutFallbackWidth, deviceWidth, deviceHeight, m_page->deviceScaleFactor(), m_viewportSize); attr.initialScale = m_page->viewportArguments().zoom; // Resets auto (-1) if no value was set by user. // This also takes care of the relayout. debian/patches/0006-Update-location-of-qaccessiblewidget.h.patch0000664000000000000000000000204312312273072021561 0ustar From a98262c78af597b2af26e5bddf2101884bba2d73 Mon Sep 17 00:00:00 2001 From: Allan Sandfeld Jensen Date: Thu, 19 Sep 2013 17:43:47 +0200 Subject: [PATCH 6/8] Update location of qaccessiblewidget.h The definition of QAccessibleWidget has moved again. Change-Id: Ibeebdd236d5a5d40e4e811975524e5c3c5ee0673 Reviewed-by: Allan Sandfeld Jensen --- Source/WebKit/qt/WidgetApi/qwebviewaccessible_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/WebKit/qt/WidgetApi/qwebviewaccessible_p.h b/Source/WebKit/qt/WidgetApi/qwebviewaccessible_p.h index a17b29e..3ba10b6 100644 --- a/Source/WebKit/qt/WidgetApi/qwebviewaccessible_p.h +++ b/Source/WebKit/qt/WidgetApi/qwebviewaccessible_p.h @@ -22,7 +22,7 @@ #include #include -#if QT_VERSION >= QT_VERSION_CHECK(5, 1, 0) +#if QT_VERSION >= QT_VERSION_CHECK(5, 1, 0) && QT_VERSION < QT_VERSION_CHECK(5, 2, 0) #include #else #include -- 1.9.0 debian/patches/dont_pollute_pri_and_pc_with_private_deps.patch0000664000000000000000000000262612312273072022333 0ustar From 31a1ec780aaba33c1008b8dc7bca7da88bd297ff Mon Sep 17 00:00:00 2001 From: Jocelyn Turcotte Date: Tue, 28 Jan 2014 13:07:59 +0100 Subject: [PATCH] Don't pollute .prl & .pc files with private dependencies Also change the creating_module check in needToLink to make sure that only the main module will try to link directly with the WebCore and JavaScriptCore static libraries. Task-number: QTBUG-35774 Initial-patch-by: Oswald Buddenhagen Change-Id: Ib5992e112803679837249400e98cb8c22636096d --- Source/widgetsapi.pri | 1 + Tools/qmake/mkspecs/features/default_post.prf | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) --- a/Source/widgetsapi.pri +++ b/Source/widgetsapi.pri @@ -47,6 +47,7 @@ WEBKIT += javascriptcore wtf webcore MODULE = webkitwidgets +CONFIG += creating_module MODULE_SYNCQT_DIR = $$_PRO_FILE_PWD_ --- a/Tools/qmake/mkspecs/features/default_post.prf +++ b/Tools/qmake/mkspecs/features/default_post.prf @@ -189,8 +189,8 @@ } defineTest(needToLink) { - # The main dynamic library always needs to link in the intermediate libraries - creating_module: return(true) + # The main module dynamic library always needs to link in the intermediate libraries + isEqual(MODULE, webkit): return(true) force_static_libs_as_shared { # So do the individual libraries if they are dynamic debian/patches/file_access.patch0000664000000000000000000001416612312273072014107 0ustar Description: file access The patch is from webkit upstream (not qtwebkit) 2013-03-22 Maxim Ermilov [Qt] Qml WebKit needs preferences to change security knobs https://bugs.webkit.org/show_bug.cgi?id=111979 Reviewed by NOBODY (OOPS!). * UIProcess/API/qt/qwebpreferences.cpp: (QWebPreferencesPrivate::testAttribute): (QWebPreferencesPrivate::setAttribute): (QWebPreferences::universalAccessFromFileURLsAllowed): (QWebPreferences::setUniversalAccessFromFileURLsAllowed): (QWebPreferences::fileAccessFromFileURLsAllowed): (QWebPreferences::setFileAccessFromFileURLsAllowed): * UIProcess/API/qt/qwebpreferences_p.h: * UIProcess/API/qt/qwebpreferences_p_p.h: Bug: https://bugs.webkit.org/show_bug.cgi?id=111979 Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/qtwebkit-opensource-src/+bug/1175836 Last-Update: 2013-06-14 Index: qtwebkit-opensource-src-5.0.1/Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp =================================================================== --- qtwebkit-opensource-src-5.0.1.orig/Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp 2013-01-29 14:03:39.000000000 -0500 +++ qtwebkit-opensource-src-5.0.1/Source/WebKit2/UIProcess/API/qt/qwebpreferences.cpp 2013-04-22 15:19:30.625241410 -0400 @@ -80,6 +80,10 @@ return preferences()->caretBrowsingEnabled(); case NotificationsEnabled: return preferences()->notificationsEnabled(); + case UniversalAccessFromFileURLsAllowed: + return preferences()->allowUniversalAccessFromFileURLs(); + case FileAccessFromFileURLsAllowed: + return preferences()->allowFileAccessFromFileURLs(); default: ASSERT_NOT_REACHED(); return false; @@ -150,6 +154,12 @@ case NotificationsEnabled: preferences()->setNotificationsEnabled(enable); break; + case UniversalAccessFromFileURLsAllowed: + preferences()->setAllowUniversalAccessFromFileURLs(enable); + break; + case FileAccessFromFileURLsAllowed: + preferences()->setAllowFileAccessFromFileURLs(enable); + break; default: ASSERT_NOT_REACHED(); } @@ -374,6 +384,32 @@ emit dnsPrefetchEnabledChanged(); } +bool QWebPreferences::universalAccessFromFileURLsAllowed() const +{ + return d->testAttribute(QWebPreferencesPrivate::UniversalAccessFromFileURLsAllowed); +} + +void QWebPreferences::setUniversalAccessFromFileURLsAllowed(bool enable) +{ + if (universalAccessFromFileURLsAllowed() == enable) + return; + d->setAttribute(QWebPreferencesPrivate::UniversalAccessFromFileURLsAllowed, enable); + emit universalAccessFromFileURLsAllowedChanged(); +} + +bool QWebPreferences::fileAccessFromFileURLsAllowed() const +{ + return d->testAttribute(QWebPreferencesPrivate::FileAccessFromFileURLsAllowed); +} + +void QWebPreferences::setFileAccessFromFileURLsAllowed(bool enable) +{ + if (fileAccessFromFileURLsAllowed() == enable) + return; + d->setAttribute(QWebPreferencesPrivate::FileAccessFromFileURLsAllowed, enable); + emit fileAccessFromFileURLsAllowedChanged(); +} + bool QWebPreferences::developerExtrasEnabled() const { return d->testAttribute(QWebPreferencesPrivate::DeveloperExtrasEnabled); Index: qtwebkit-opensource-src-5.0.1/Source/WebKit2/UIProcess/API/qt/qwebpreferences_p.h =================================================================== --- qtwebkit-opensource-src-5.0.1.orig/Source/WebKit2/UIProcess/API/qt/qwebpreferences_p.h 2013-01-29 14:03:39.000000000 -0500 +++ qtwebkit-opensource-src-5.0.1/Source/WebKit2/UIProcess/API/qt/qwebpreferences_p.h 2013-04-22 15:22:13.977246784 -0400 @@ -48,6 +48,8 @@ Q_PROPERTY(bool scrollAnimatorEnabled READ scrollAnimatorEnabled WRITE setScrollAnimatorEnabled NOTIFY scrollAnimatorEnabledChanged FINAL) Q_PROPERTY(bool caretBrowsingEnabled READ caretBrowsingEnabled WRITE setCaretBrowsingEnabled NOTIFY caretBrowsingEnabledChanged FINAL) Q_PROPERTY(bool notificationsEnabled READ notificationsEnabled WRITE setNotificationsEnabled NOTIFY notificationsEnabledChanged FINAL) + Q_PROPERTY(bool universalAccessFromFileURLsAllowed READ universalAccessFromFileURLsAllowed WRITE setUniversalAccessFromFileURLsAllowed NOTIFY universalAccessFromFileURLsAllowedChanged FINAL) + Q_PROPERTY(bool fileAccessFromFileURLsAllowed READ fileAccessFromFileURLsAllowed WRITE setFileAccessFromFileURLsAllowed NOTIFY fileAccessFromFileURLsAllowedChanged FINAL) Q_PROPERTY(QString standardFontFamily READ standardFontFamily WRITE setStandardFontFamily NOTIFY standardFontFamilyChanged FINAL) Q_PROPERTY(QString fixedFontFamily READ fixedFontFamily WRITE setFixedFontFamily NOTIFY fixedFontFamilyChanged FINAL) @@ -138,6 +140,11 @@ unsigned defaultFixedFontSize() const; void setDefaultFixedFontSize(unsigned size); + bool universalAccessFromFileURLsAllowed() const; + void setUniversalAccessFromFileURLsAllowed(bool enable); + bool fileAccessFromFileURLsAllowed() const; + void setFileAccessFromFileURLsAllowed(bool enable); + Q_SIGNALS: void autoLoadImagesChanged(); void pluginsEnabledChanged(); @@ -156,6 +163,8 @@ void scrollAnimatorEnabledChanged(); void caretBrowsingEnabledChanged(); void notificationsEnabledChanged(); + void universalAccessFromFileURLsAllowedChanged(); + void fileAccessFromFileURLsAllowedChanged(); void standardFontFamilyChanged(); void fixedFontFamilyChanged(); Index: qtwebkit-opensource-src-5.0.1/Source/WebKit2/UIProcess/API/qt/qwebpreferences_p_p.h =================================================================== --- qtwebkit-opensource-src-5.0.1.orig/Source/WebKit2/UIProcess/API/qt/qwebpreferences_p_p.h 2013-01-29 14:03:39.000000000 -0500 +++ qtwebkit-opensource-src-5.0.1/Source/WebKit2/UIProcess/API/qt/qwebpreferences_p_p.h 2013-04-22 15:22:58.525248250 -0400 @@ -44,7 +44,9 @@ WebAudioEnabled, ScrollAnimatorEnabled, CaretBrowsingEnabled, - NotificationsEnabled + NotificationsEnabled, + UniversalAccessFromFileURLsAllowed, + FileAccessFromFileURLsAllowed }; enum FontFamily { debian/patches/aarch64.patch0000664000000000000000000000237712312273072013100 0ustar Description: support AArch64 architecture Origin: upstream, https://qt.gitorious.org/qt/qtwebkit/commit/eb7186ce272378 Last-Update: 2014-03-15 --- a/Source/WTF/wtf/Platform.h +++ b/Source/WTF/wtf/Platform.h @@ -312,6 +312,14 @@ #endif /* ARM */ +/* CPU(AARCH64) - AArch64 */ +#if defined(__aarch64__) +#define WTF_CPU_AARCH64 1 +#if defined(__AARCH64EB__) +#define WTF_CPU_BIG_ENDIAN 1 +#endif +#endif + #if CPU(ARM) || CPU(MIPS) || CPU(SH4) || CPU(SPARC) #define WTF_CPU_NEEDS_ALIGNED_ACCESS 1 #endif @@ -870,6 +878,7 @@ || CPU(ALPHA) \ || CPU(SPARC64) \ || CPU(S390X) \ + || CPU(AARCH64) \ || CPU(PPC64) #define WTF_USE_JSVALUE64 1 #else --- a/Source/WTF/wtf/dtoa/utils.h +++ b/Source/WTF/wtf/dtoa/utils.h @@ -49,7 +49,7 @@ defined(__ARMEL__) || \ defined(_MIPS_ARCH_MIPS32R2) #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1 -#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || CPU(SPARC) || CPU(ALPHA) +#elif CPU(MIPS) || CPU(PPC) || CPU(PPC64) || OS(WINCE) || CPU(SH4) || CPU(S390) || CPU(S390X) || CPU(IA64) || CPU(SPARC) || CPU(ALPHA) || CPU(AARCH64) #define DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS 1 #elif defined(_M_IX86) || defined(__i386__) #if defined(_WIN32) debian/patches/stabs_format_debug_info.diff0000664000000000000000000000276412312273072016326 0ustar Description: build s390, armel, mips*, iX86 debugging symbols with -gstabs -g exhausts memory on these arches. Thanks to Oswald Buddenhagen for the hint. Author: Sune Vuorela Author: Modestas Vainius Author: Timo Jyrinki Bug-Debian: http://bugs.debian.org/528485 Bug-Debian: http://bugs.debian.org/618325 Last-Update: 2013-02-07 (add iX86) --- a/Source/WebKit/WebKit1.pri +++ b/Source/WebKit/WebKit1.pri @@ -7,6 +7,12 @@ SOURCE_DIR = $${ROOT_WEBKIT_DIR}/Source/WebKit +equals(QT_ARCH, s390)|equals(QT_ARCH, arm)|equals(QT_ARCH, mips)|equals(QT_ARCH, i386)|equals(QT_ARCH, i686)|equals(QT_ARCH, m68k) { + message("s390, armel, armhf, mipsel, i386 workaround for QtWebkit: do not build with -g, but with -gstabs") + QMAKE_CXXFLAGS -= -g + QMAKE_CXXFLAGS += -gstabs +} + INCLUDEPATH += \ $$SOURCE_DIR/qt/Api \ $$SOURCE_DIR/qt/WebCoreSupport \ --- a/Source/WebKit2/WebKit2.pri +++ b/Source/WebKit2/WebKit2.pri @@ -9,6 +9,12 @@ SOURCE_DIR = $${ROOT_WEBKIT_DIR}/Source/ WEBKIT2_GENERATED_SOURCES_DIR = $${ROOT_BUILD_DIR}/Source/WebKit2/$${GENERATED_SOURCES_DESTDIR} +equals(QT_ARCH, s390)|equals(QT_ARCH, arm)|equals(QT_ARCH, mips)|equals(QT_ARCH, i386)|equals(QT_ARCH, i686)|equals(QT_ARCH, m68k) { + message("s390, armel, armhf, mipsel, i686 workaround for QtWebkit: do not build with -g, but with -gstabs") + QMAKE_CXXFLAGS -= -g + QMAKE_CXXFLAGS += -gstabs +} + INCLUDEPATH += \ $$SOURCE_DIR \ $$SOURCE_DIR/Platform \ debian/watch0000664000000000000000000000020512312273072010215 0ustar version=3 http://download.qt-project.org/official_releases/qt/([\d\.]*)/([\d\.]*)/submodules/qtwebkit-opensource-src-([^-]*)\.tar.xz debian/libqt5webkit5-dev.install0000664000000000000000000000535612312273072014037 0ustar usr/include/qt5/QtWebKit/QtWebKitDepends usr/include/qt5/QtWebKitWidgets/QtWebKitWidgetsDepends usr/include/qt5/QtWebKit/QWebDatabase usr/include/qt5/QtWebKit/QWebElement usr/include/qt5/QtWebKit/QWebElementCollection usr/include/qt5/QtWebKit/QWebFullScreenVideoHandler usr/include/qt5/QtWebKit/QWebHapticFeedbackPlayer usr/include/qt5/QtWebKit/QWebHistory usr/include/qt5/QtWebKit/QWebHistoryInterface usr/include/qt5/QtWebKit/QWebHistoryItem usr/include/qt5/QtWebKit/QWebKitPlatformPlugin usr/include/qt5/QtWebKit/QWebNotificationData usr/include/qt5/QtWebKit/QWebNotificationPresenter usr/include/qt5/QtWebKit/QWebPluginFactory usr/include/qt5/QtWebKit/QWebSecurityOrigin usr/include/qt5/QtWebKit/QWebSelectData usr/include/qt5/QtWebKit/QWebSelectMethod usr/include/qt5/QtWebKit/QWebSettings usr/include/qt5/QtWebKit/QWebSpellChecker usr/include/qt5/QtWebKit/QWebTouchModifier usr/include/qt5/QtWebKit/QtWebKit usr/include/qt5/QtWebKit/QtWebKitVersion usr/include/qt5/QtWebKit/qtwebkitversion.h usr/include/qt5/QtWebKit/qwebdatabase.h usr/include/qt5/QtWebKit/qwebelement.h usr/include/qt5/QtWebKit/qwebhistory.h usr/include/qt5/QtWebKit/qwebhistoryinterface.h usr/include/qt5/QtWebKit/qwebkitglobal.h usr/include/qt5/QtWebKit/qwebkitplatformplugin.h usr/include/qt5/QtWebKit/qwebpluginfactory.h usr/include/qt5/QtWebKit/qwebsecurityorigin.h usr/include/qt5/QtWebKit/qwebsettings.h usr/include/qt5/QtWebKitWidgets/QGraphicsWebView usr/include/qt5/QtWebKitWidgets/QWebFrame usr/include/qt5/QtWebKit/*/QtWebKit/private/* usr/include/qt5/QtWebKitWidgets/*/QtWebKitWidgets/private/* usr/include/qt5/QtWebKitWidgets/QWebHitTestResult usr/include/qt5/QtWebKitWidgets/QWebInspector usr/include/qt5/QtWebKitWidgets/QWebPage usr/include/qt5/QtWebKitWidgets/QWebView usr/include/qt5/QtWebKitWidgets/QtWebKitWidgets usr/include/qt5/QtWebKitWidgets/QtWebKitWidgetsVersion usr/include/qt5/QtWebKitWidgets/qgraphicswebview.h usr/include/qt5/QtWebKitWidgets/qtwebkitwidgetsversion.h usr/include/qt5/QtWebKitWidgets/qwebframe.h usr/include/qt5/QtWebKitWidgets/qwebinspector.h usr/include/qt5/QtWebKitWidgets/qwebpage.h usr/include/qt5/QtWebKitWidgets/qwebview.h usr/lib/*/cmake/Qt5WebKit/Qt5WebKitConfig.cmake usr/lib/*/cmake/Qt5WebKit/Qt5WebKitConfigVersion.cmake usr/lib/*/cmake/Qt5WebKitWidgets/Qt5WebKitWidgetsConfig.cmake usr/lib/*/cmake/Qt5WebKitWidgets/Qt5WebKitWidgetsConfigVersion.cmake usr/lib/*/libQt5WebKit.prl usr/lib/*/libQt5WebKit.so usr/lib/*/libQt5WebKitWidgets.prl usr/lib/*/libQt5WebKitWidgets.so usr/lib/*/pkgconfig/Qt5WebKit.pc usr/lib/*/pkgconfig/Qt5WebKitWidgets.pc usr/lib/*/qt5/mkspecs/modules/qt_lib_webkit.pri usr/lib/*/qt5/mkspecs/modules/qt_lib_webkitwidgets.pri usr/lib/*/qt5/mkspecs/modules/qt_lib_webkit_private.pri usr/lib/*/qt5/mkspecs/modules/qt_lib_webkitwidgets_private.pri debian/libqt5webkit5-qmlwebkitplugin.install0000664000000000000000000000031412312273072016464 0ustar usr/lib/*/qt5/qml/QtWebKit/experimental/libqmlwebkitexperimentalplugin.so usr/lib/*/qt5/qml/QtWebKit/experimental/qmldir usr/lib/*/qt5/qml/QtWebKit/libqmlwebkitplugin.so usr/lib/*/qt5/qml/QtWebKit/qmldir debian/qtwebkit5-doc-html.install0000664000000000000000000000003412312273072014200 0ustar usr/share/qt5/doc/qtwebkit/ debian/rules0000775000000000000000000000426212312273072010253 0ustar #!/usr/bin/make -f # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 export CFLAGS := $(shell dpkg-buildflags --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS) export CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS) $(shell dpkg-buildflags --get CPPFLAGS) export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,--as-needed export QT_SELECT := qt5 # Filter -g from environment on troublesome arches. Replace it with -gstabs # See also: stabs_format_debug_info.diff DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH) DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) ifneq (,$(filter $(DEB_HOST_ARCH),s390 s390x armel armhf mips mipsel m68k)) export DEB_CFLAGS_MAINT_STRIP := -g export DEB_CFLAGS_MAINT_APPEND := -gstabs export DEB_CXXFLAGS_MAINT_STRIP := -g export DEB_CXXFLAGS_MAINT_APPEND := -gstabs endif ifneq (,$(filter $(DEB_HOST_ARCH),alpha)) export DEB_LDFLAGS_MAINT_APPEND := -Wl,--no-relax endif %: dh $@ --parallel --dbg-package=libqt5webkit5-dbg --with pkgkde_symbolshelper override_dh_auto_configure: qmake WEBKIT_CONFIG-=use_webp override_dh_auto_build-arch: # This override may seem futile, but it helps us make sure that the tools # needed for building the docs are built before calling them. # If there's a better way, do not heasitate to tell us. dh_auto_build override_dh_auto_build-indep: dh_auto_build -Smakefile -- docs override_dh_auto_install-arch: make install INSTALL_ROOT=$(CURDIR)/debian/tmp # Remove rpath from the offending binaries chrpath -d $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/qt5/libexec/QtWebProcess chrpath -d $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/qt5/libexec/QtWebPluginProcess # Fix wrong path in pkgconfig files find $(CURDIR)/debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/pkgconfig -type f -name '*.pc' \ -exec sed -i -e 's/$(DEB_HOST_MULTIARCH)\/$(DEB_HOST_MULTIARCH)/$(DEB_HOST_MULTIARCH)/g' {} \; # Remove libtool-like files rm -f debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/*.la override_dh_auto_install-indep: make INSTALL_ROOT=$(CURDIR)/debian/tmp install_docs override_dh_install: dh_install --fail-missing override_dh_builddeb: dh_builddeb -- -Zxz debian/source/0000775000000000000000000000000012312273072010467 5ustar debian/source/format0000664000000000000000000000001412312273072011675 0ustar 3.0 (quilt) debian/qtwebkit5-doc.install0000664000000000000000000000003712312273072013241 0ustar usr/share/qt5/doc/qtwebkit.qch debian/copyright0000664000000000000000000173733012312273072011140 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Source: http://releases.qt-project.org/qt5/5.0.1/submodules_tar/ Files: * Copyright: 2010 Apple Inc. License: BSD-2-clause Files: debian/* Copyright: 2010 Fathi Boudra 2012 Zoltán Balogh 2012-2013 Timo Jyrinki License: LGPL-2+ Files: WebKitLibraries/WebCoreSQLite3/* Copyright: 2001, 2006 D. Richard Hipp License: copyright-disclaimer Files: Source/ThirdParty/ANGLE/* Copyright: 2002-2010 The ANGLE Project Authors. License: BSD-3-clause Files: Source/ThirdParty/gyp/* Copyright: 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/* Copyright: 2010 The Chromium Authors License: BSD-2-clause Files: Source/JavaScriptCore/wtf/FastMalloc.cpp Copyright: 2005, 2007, Google Inc. 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/gtk/MainThreadGtk.cpp Copyright: 2007, 2008 Apple Inc. 2007 Justin Haygood License: BSD-3-clause Files: Source/JavaScriptCore/wtf/Atomics.h Source/JavaScriptCore/wtf/Threading.h Source/JavaScriptCore/wtf/ThreadSafeRefCounted.h Source/JavaScriptCore/wtf/MainThread.h Source/JavaScriptCore/wtf/ThreadingPrimitives.h Copyright: 2007, 2008, 2010 Apple Inc. 2007 Justin Haygood License: BSD-3-clause Files: Examples/NetscapeCoreAnimationMoviePlugin/main.m NetscapeCoreAnimationMoviePlugin/MovieControllerLayer.m NetscapeCoreAnimationMoviePlugin/main.m Copyright: 2009 Apple Inc. License: MIT-apple Files: Source/ThirdParty/ANGLE/src/compiler/preprocessor/* Copyright: 2002, NVIDIA Corporation. License: MIT-apple Files: Examples/NetscapeCoreAnimationMoviePlugin/MovieControllerLayer.h Examples/NetscapeCoreAnimationMoviePlugin/MovieControllerLayer.m Source/WebCore/page/animation/AnimationControllerPrivate.h Source/WebCore/rendering/RenderLineBoxList.h Source/WebCore/platform/RunLoopTimer.h Source/WebCore/platform/cf/RunLoopTimerCF.cpp Source/WebCore/accessibility/AccessibilityARIAGridRow.cpp Source/WebCore/accessibility/AccessibilityARIAGridRow.h Source/WebCore/accessibility/AccessibilityARIAGridCell.cpp Source/WebCore/accessibility/AccessibilityMediaControls.cpp Source/WebCore/accessibility/AccessibilitySlider.cpp Source/WebCore/accessibility/AccessibilitySlider.h Source/WebCore/accessibility/AccessibilityARIAGrid.cpp Source/WebCore/accessibility/AccessibilityARIAGrid.h Source/WebCore/accessibility/AccessibilityMediaControls.h Source/WebCore/accessibility/AccessibilityARIAGridCell.h Source/WebCore/inspector/front-end/inspectorSyntaxHighlight.css Copyright: 2009 Apple Inc. License: BSD-3-clause Files: Source/gyp/configure Source/WebCore/page/Crypto.cpp Source/WebCore/page/Crypto.idl Source/WebCore/page/PageSerializer.cpp Source/WebCore/page/Crypto.h Source/WebCore/loader/ThreadableLoaderClient.h Source/WebCore/loader/DocumentThreadableLoaderClient.h Source/WebCore/loader/DocumentThreadableLoader.cpp Source/WebCore/bindings/js/WorkerScriptDebugServer.cpp Source/WebCore/bindings/js/WorkerScriptDebugServer.h Source/WebCore/bindings/js/JSMemoryInfoCustom.cpp Source/WebCore/bindings/js/PageScriptDebugServer.h Source/WebCore/bindings/js/PageScriptDebugServer.cpp Source/WebCore/dom/ShadowRoot.cpp Source/WebCore/dom/DataTransferItems.h Source/WebCore/dom/DataTransferItem.cpp Source/WebCore/dom/DataTransferItem.idl Source/WebCore/dom/IconURL.cpp Source/WebCore/dom/IconURL.h Source/WebCore/dom/DataTransferItem.h Source/WebCore/dom/RenderedDocumentMarker.h Source/WebCore/dom/DataTransferItems.idl Source/WebCore/dom/ShadowRoot.h Source/WebCore/dom/StringCallback.idl Source/WebCore/dom/RequestAnimationFrameCallback.h Source/WebCore/platform/SharedBufferCRLFLineReader.cpp Source/WebCore/platform/SharedBufferCRLFLineReader.h Source/WebCore/platform/graphics/gpu/BicubicShader.cpp Source/WebCore/platform/graphics/gpu/BicubicShader.h Source/WebCore/platform/graphics/gpu/ConvolutionShader.h Source/WebCore/platform/graphics/gpu/ConvolutionShader.cpp Source/WebCore/platform/text/LocalizedNumberICU.cpp Source/WebCore/platform/text/StringWithDirection.h Source/WebCore/platform/text/LocalizedNumberNone.cpp Source/WebCore/platform/text/LocalizedNumber.h Source/WebCore/platform/text/mac/LocalizedNumberMac.mm Source/WebCore/platform/text/TextChecking.h Source/WebCore/platform/audio/SincResampler.cpp Source/WebCore/platform/audio/SincResampler.h Source/WebCore/workers/WorkerContextInspectorProxy.h Source/WebCore/fileapi/EntryBase.cpp Source/WebCore/storage/SQLCallbackWrapper.h Source/WebCore/storage/StorageInfoUsageCallback.h Source/WebCore/storage/StorageInfoUsageCallback.idl Source/WebCore/storage/StorageInfo.h Source/WebCore/storage/IDBFactoryBackendImpl.cpp Source/WebCore/storage/StorageInfoErrorCallback.idl Source/WebCore/storage/StorageInfo.cpp Source/WebCore/storage/StorageInfoErrorCallback.h Source/WebCore/storage/StorageInfoQuotaCallback.h Source/WebCore/plugins/IFrameShimSupport.cpp Source/WebCore/html/HTMLKeygenElement.idl Source/WebCore/html/shadow/ShadowContentElement.h Source/WebCore/html/shadow/DetailsMarkerControl.cpp Source/WebCore/html/shadow/DetailsMarkerControl.h Source/WebCore/html/shadow/ProgressShadowElement.cpp Source/WebCore/html/shadow/MeterShadowElement.h Source/WebCore/html/shadow/MeterShadowElement.cpp Source/WebCore/inspector/InspectorPageAgent.h Source/WebCore/inspector/PageDebuggerAgent.cpp Source/WebCore/inspector/InspectorController.cpp Source/WebCore/inspector/InspectorConsoleInstrumentation.h Source/WebCore/inspector/InspectorRuntimeAgent.cpp Source/WebCore/inspector/inline-javascript-imports.py Source/WebCore/inspector/PageDebuggerAgent.h Source/WebCore/inspector/WorkerDebuggerAgent.cpp Source/WebCore/inspector/InspectorWorkerAgent.h Source/WebCore/inspector/DOMNodeHighlighter.cpp Source/WebCore/inspector/WorkerInspectorController.h Source/WebCore/inspector/InspectorState.cpp Source/WebCore/inspector/InspectorDOMDebuggerAgent.h Source/WebCore/inspector/InspectorResourceAgent.cpp Source/WebCore/inspector/WorkerInspectorController.cpp Source/WebCore/inspector/InspectorDOMDebuggerAgent.cpp Source/WebCore/inspector/InspectorRuntimeAgent.h Source/WebCore/inspector/InspectorPageAgent.cpp Source/WebCore/inspector/InspectorController.h Source/WebCore/inspector/WorkerDebuggerAgent.h Source/WebCore/inspector/InspectorDatabaseInstrumentation.h Source/WebCore/inspector/InspectorState.h Source/WebCore/inspector/InspectorWorkerAgent.cpp Source/WebCore/inspector/front-end/ShowMoreDataGridNode.js Source/WebCore/inspector/front-end/ScriptFormatterWorker.js Source/WebCore/inspector/front-end/ResourceJSONView.js Source/WebCore/inspector/front-end/HAREntry.js Source/WebCore/inspector/front-end/DetailedHeapshotGridNodes.js Source/WebCore/inspector/front-end/CSSKeywordCompletions.js Source/WebCore/inspector/front-end/HeapSnapshotProxy.js Source/WebCore/inspector/front-end/WorkerManager.js Source/WebCore/inspector/front-end/NetworkManager.js Source/WebCore/inspector/front-end/PleaseWaitMessage.js Source/WebCore/inspector/front-end/HeapSnapshotWorkerDispatcher.js Source/WebCore/inspector/front-end/SourceFile.js Source/WebCore/inspector/front-end/ExtensionServer.js Source/WebCore/inspector/front-end/HeapSnapshot.js Source/WebCore/inspector/front-end/HeapSnapshotWorker.js Source/WebCore/inspector/front-end/DOMBreakpointsSidebarPane.js Source/WebCore/inspector/front-end/ExtensionPanel.js Source/WebCore/inspector/front-end/ResourceCookiesView.js Source/WebCore/inspector/front-end/JavaScriptFormatter.js Source/WebCore/inspector/front-end/DebuggerPresentationModel.js Source/WebCore/inspector/front-end/ScriptFormatter.js Source/WebCore/inspector/front-end/AuditsPanel.js Source/WebCore/inspector/front-end/AuditLauncherView.js Source/WebCore/inspector/front-end/DetailedHeapshotView.js Source/WebCore/inspector/front-end/ExtensionAPI.js Source/WebCore/inspector/front-end/ResourceTreeModel.js Source/WebCore/inspector/InspectorFrontendProxy.cpp Source/WebCore/inspector/InstrumentingAgents.h Source/WebCore/inspector/DOMNodeHighlighter.h Source/WebCore/inspector/InspectorInstrumentation.cpp Source/JavaScriptCore/wtf/SHA1.h Source/JavaScriptCore/wtf/DynamicAnnotations.cpp Source/JavaScriptCore/wtf/DynamicAnnotations.h Source/JavaScriptCore/wtf/SHA1.cpp Copyright: 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/UglifyJS/parse-js.js Copyright: 2010 (c) Mihai Bazon License: BSD-2-clause Files: Source/WebCore/page/PerformanceNavigation.idl Source/WebCore/page/SpeechInputClient.h Source/WebCore/page/MemoryInfo.cpp Source/WebCore/page/MemoryInfo.idl Source/WebCore/page/SpeechInput.h Source/WebCore/page/SpeechInputResultList.cpp Source/WebCore/page/PerformanceTiming.idl Source/WebCore/page/PerformanceTiming.h Source/WebCore/page/Performance.idl Source/WebCore/page/Performance.h Source/WebCore/page/MemoryInfo.h Source/WebCore/page/SpeechInput.cpp Source/WebCore/page/PerformanceNavigation.h Source/WebCore/page/SpeechInputEvent.cpp Source/WebCore/page/SpeechInputListener.h Source/WebCore/page/PerformanceNavigation.cpp Source/WebCore/page/Performance.cpp Source/WebCore/page/PerformanceTiming.cpp Source/WebCore/loader/PingLoader.cpp Source/WebCore/loader/CachedMetadata.h Source/WebCore/loader/FormSubmission.h Source/WebCore/loader/PingLoader.h Source/WebCore/loader/FormSubmission.cpp Source/WebCore/loader/FrameLoaderStateMachine.h Source/WebCore/loader/FrameLoaderStateMachine.cpp Source/WebCore/bindings/js/ScriptCallStackFactory.cpp Source/WebCore/bindings/js/JSFileReaderCustom.cpp Source/WebCore/bindings/js/JSEntrySyncCustom.cpp Source/WebCore/bindings/js/JSSQLTransactionSyncCustom.cpp Source/WebCore/bindings/js/ScriptCallStackFactory.h Source/WebCore/bindings/js/JSDirectoryEntryCustom.cpp Source/WebCore/bindings/js/JSDOMFormDataCustom.cpp Source/WebCore/bindings/js/JSErrorHandler.cpp Source/WebCore/bindings/js/JSDirectoryEntrySyncCustom.cpp Source/WebCore/bindings/js/JSEntryCustom.cpp Source/WebCore/bindings/js/JSErrorHandler.h Source/WebCore/bindings/js/ScriptGCEvent.cpp Source/WebCore/bindings/js/ScriptGCEvent.h Source/WebCore/bindings/generic/ActiveDOMCallback.h Source/WebCore/bindings/generic/ActiveDOMCallback.cpp Source/WebCore/bindings/scripts/test/TestInterface.idl Source/WebCore/dom/ScopedEventQueue.h Source/WebCore/dom/StringCallback.cpp Source/WebCore/dom/DOMTimeStamp.h Source/WebCore/dom/TreeDepthLimit.h Source/WebCore/dom/RequestAnimationFrameCallback.idl Source/WebCore/dom/StringCallback.h Source/WebCore/dom/ScopedEventQueue.cpp Source/WebCore/rendering/RenderInputSpeech.cpp Source/WebCore/rendering/RenderInputSpeech.h Source/WebCore/websockets/WebSocketHandshakeRequest.h Source/WebCore/websockets/WebSocketHandshakeResponse.cpp Source/WebCore/websockets/WebSocketHandshakeResponse.h Source/WebCore/websockets/WebSocketHandshakeRequest.cpp Source/WebCore/platform/mock/SpeechInputClientMock.h Source/WebCore/platform/mock/GeolocationClientMock.h Source/WebCore/platform/mock/GeolocationClientMock.cpp Source/WebCore/platform/mock/SpeechInputClientMock.cpp Source/WebCore/platform/FileStream.h Source/WebCore/platform/FileMetadata.h Source/WebCore/platform/network/BlobRegistryImpl.h Source/WebCore/platform/network/BlobResourceHandle.cpp Source/WebCore/platform/network/BlobStorageData.h Source/WebCore/platform/network/BlobRegistryImpl.cpp Source/WebCore/platform/network/BlobData.h Source/WebCore/platform/network/BlobRegistry.h Source/WebCore/platform/network/BlobResourceHandle.h Source/WebCore/platform/network/BlobData.cpp Source/WebCore/platform/AsyncFileSystem.h Source/WebCore/platform/AsyncFileStream.h Source/WebCore/platform/FileStreamClient.h Source/WebCore/platform/image-decoders/webp/WEBPImageDecoder.h Source/WebCore/platform/image-decoders/webp/WEBPImageDecoder.cpp Source/WebCore/platform/AsyncFileSystemCallbacks.h Source/WebCore/platform/FileStream.cpp Source/WebCore/platform/UUID.h Source/WebCore/platform/AsyncFileSystem.cpp Source/WebCore/platform/UUID.cpp Source/WebCore/platform/audio/Panner.cpp Source/WebCore/platform/audio/HRTFKernel.cpp Source/WebCore/platform/audio/ReverbAccumulationBuffer.cpp Source/WebCore/platform/audio/ReverbInputBuffer.cpp Source/WebCore/platform/audio/HRTFDatabaseLoader.h Source/WebCore/platform/audio/AudioDSPKernelProcessor.cpp Source/WebCore/platform/audio/Distance.h Source/WebCore/platform/audio/AudioSourceProvider.h Source/WebCore/platform/audio/Cone.cpp Source/WebCore/platform/audio/Biquad.cpp Source/WebCore/platform/audio/Distance.cpp Source/WebCore/platform/audio/FFTConvolver.cpp Source/WebCore/platform/audio/HRTFKernel.h Source/WebCore/platform/audio/AudioDSPKernelProcessor.h Source/WebCore/platform/audio/AudioArray.h Source/WebCore/platform/audio/AudioDestination.h Source/WebCore/platform/audio/AudioDSPKernel.h Source/WebCore/platform/audio/ReverbConvolver.h Source/WebCore/platform/audio/HRTFElevation.h Source/WebCore/platform/audio/HRTFDatabase.cpp Source/WebCore/platform/audio/Reverb.cpp Source/WebCore/platform/audio/ReverbConvolver.cpp Source/WebCore/platform/audio/AudioChannel.h Source/WebCore/platform/audio/HRTFElevation.cpp Source/WebCore/platform/audio/ReverbAccumulationBuffer.h Source/WebCore/platform/audio/HRTFDatabase.h Source/WebCore/platform/audio/AudioProcessor.h Source/WebCore/platform/audio/AudioChannel.cpp Source/WebCore/platform/audio/ReverbConvolverStage.cpp Source/WebCore/platform/audio/Biquad.h Source/WebCore/platform/audio/mac/AudioFileReaderMac.h Source/WebCore/platform/audio/mac/FFTFrameMac.cpp Source/WebCore/platform/audio/mac/AudioDestinationMac.h Source/WebCore/platform/audio/mac/AudioDestinationMac.cpp Source/WebCore/platform/audio/mac/AudioFileReaderMac.cpp Source/WebCore/platform/audio/ReverbConvolverStage.h Source/WebCore/platform/audio/FFTFrame.h Source/WebCore/platform/audio/AudioFileReader.h Source/WebCore/platform/audio/Reverb.h Source/WebCore/platform/audio/Cone.h Source/WebCore/platform/audio/HRTFDatabaseLoader.cpp Source/WebCore/platform/audio/AudioBus.h Source/WebCore/platform/audio/FFTFrame.cpp Source/WebCore/platform/audio/ReverbInputBuffer.h Source/WebCore/platform/audio/FFTConvolver.h Source/WebCore/platform/audio/AudioBus.cpp Source/WebCore/css/CSSPropertySourceData.cpp Source/WebCore/css/CSSOMUtils.cpp Source/WebCore/css/CSSOMUtils.h Source/WebCore/css/CSSPropertySourceData.h Source/WebCore/workers/AbstractWorker.h Source/WebCore/workers/AbstractWorker.cpp Source/WebCore/fileapi/FileWriterBase.cpp Source/WebCore/fileapi/DOMFilePath.cpp Source/WebCore/fileapi/DOMFileSystemBase.h Source/WebCore/fileapi/BlobURL.h Source/WebCore/fileapi/FileWriterCallback.idl Source/WebCore/fileapi/Metadata.idl Source/WebCore/fileapi/EntrySync.h Source/WebCore/fileapi/LocalFileSystem.cpp Source/WebCore/fileapi/DirectoryEntrySync.idl Source/WebCore/fileapi/FileEntry.cpp Source/WebCore/fileapi/FileReaderLoaderClient.h Source/WebCore/fileapi/FileWriterBase.h Source/WebCore/fileapi/FileSystemCallback.h Source/WebCore/fileapi/EntryArraySync.h Source/WebCore/fileapi/LocalFileSystem.h Source/WebCore/fileapi/WebKitFlags.idl Source/WebCore/fileapi/EntryCallback.idl Source/WebCore/fileapi/FileThreadTask.h Source/WebCore/fileapi/AsyncFileWriterClient.h Source/WebCore/fileapi/FileReaderLoader.h Source/WebCore/fileapi/DirectoryReader.cpp Source/WebCore/fileapi/DirectoryEntrySync.h Source/WebCore/fileapi/FileStreamProxy.cpp Source/WebCore/fileapi/EntryArraySync.cpp Source/WebCore/fileapi/EntriesCallback.h Source/WebCore/fileapi/FileReaderSync.cpp Source/WebCore/fileapi/FileEntrySync.idl Source/WebCore/fileapi/Blob.cpp Source/WebCore/fileapi/FileReader.cpp Source/WebCore/fileapi/DirectoryReader.h Source/WebCore/fileapi/ThreadableBlobRegistry.cpp Source/WebCore/fileapi/FileError.idl Source/WebCore/fileapi/FileException.idl Source/WebCore/fileapi/FileEntry.h Source/WebCore/fileapi/DirectoryReaderBase.h Source/WebCore/fileapi/DOMFileSystem.cpp Source/WebCore/fileapi/ErrorCallback.h Source/WebCore/fileapi/DirectoryEntry.h Source/WebCore/fileapi/MetadataCallback.idl Source/WebCore/fileapi/FileWriterSync.cpp Source/WebCore/fileapi/FileSystemCallbacks.cpp Source/WebCore/fileapi/FileThread.cpp Source/WebCore/fileapi/FileReader.h Source/WebCore/fileapi/EntryBase.h Source/WebCore/fileapi/DOMFilePath.h Source/WebCore/fileapi/FileWriterSync.idl Source/WebCore/fileapi/EntrySync.cpp Source/WebCore/fileapi/FileThread.h Source/WebCore/fileapi/BlobURL.cpp Source/WebCore/fileapi/Entry.idl Source/WebCore/fileapi/FileWriterSync.h Source/WebCore/fileapi/DOMFileSystemSync.cpp Source/WebCore/fileapi/EntryCallback.h Source/WebCore/fileapi/FileWriterCallback.h Source/WebCore/fileapi/FileSystemCallbacks.h Source/WebCore/fileapi/FileException.h Source/WebCore/fileapi/DOMFileSystem.h Source/WebCore/fileapi/FileCallback.h Source/WebCore/fileapi/FileWriterBaseCallback.h Source/WebCore/fileapi/FileError.h Source/WebCore/fileapi/FileReaderSync.idl Source/WebCore/fileapi/WebKitBlobBuilder.h Source/WebCore/fileapi/EntryArray.idl Source/WebCore/fileapi/DirectoryReaderSync.h Source/WebCore/fileapi/FileReaderLoader.cpp Source/WebCore/fileapi/FileWriter.h Source/WebCore/fileapi/EntryArray.cpp Source/WebCore/fileapi/DOMFileSystemSync.idl Source/WebCore/fileapi/WebKitBlobBuilder.cpp Source/WebCore/fileapi/DirectoryReaderSync.cpp Source/WebCore/fileapi/ThreadableBlobRegistry.h Source/WebCore/fileapi/EntriesCallback.idl Source/WebCore/fileapi/WebKitBlobBuilder.idl Source/WebCore/fileapi/FileReaderSync.h Source/WebCore/fileapi/Blob.idl Source/WebCore/fileapi/AsyncFileWriter.h Source/WebCore/fileapi/FileCallback.idl Source/WebCore/fileapi/DOMFileSystemSync.h Source/WebCore/fileapi/FileWriter.cpp Source/WebCore/fileapi/Entry.cpp Source/WebCore/fileapi/Metadata.h Source/WebCore/fileapi/FileEntry.idl Source/WebCore/fileapi/EntrySync.idl Source/WebCore/fileapi/DirectoryReaderSync.idl Source/WebCore/fileapi/DirectoryReader.idl Source/WebCore/fileapi/DirectoryEntry.idl Source/WebCore/fileapi/Entry.h Source/WebCore/fileapi/Blob.h Source/WebCore/fileapi/MetadataCallback.h Source/WebCore/fileapi/EntryArray.h Source/WebCore/fileapi/ErrorCallback.idl Source/WebCore/fileapi/DirectoryEntrySync.cpp Source/WebCore/fileapi/FileSystemCallback.idl Source/WebCore/fileapi/DirectoryEntry.cpp Source/WebCore/fileapi/DOMFileSystemBase.cpp Source/WebCore/fileapi/EntryArraySync.idl Source/WebCore/fileapi/WebKitFlags.h Source/WebCore/fileapi/SyncCallbackHelper.h Source/WebCore/fileapi/FileEntrySync.h Source/WebCore/fileapi/FileEntrySync.cpp Source/WebCore/storage/IDBEventDispatcher.cpp Source/WebCore/storage/IDBRequest.h Source/WebCore/storage/SQLStatementSync.h Source/WebCore/storage/AbstractDatabase.cpp Source/WebCore/storage/SQLTransactionSync.cpp Source/WebCore/storage/SQLException.idl Source/WebCore/storage/SQLTransactionSync.h Source/WebCore/storage/IDBFactoryBackendInterface.cpp Source/WebCore/storage/SQLTransactionSyncCallback.h Source/WebCore/storage/IDBRequest.cpp Source/WebCore/storage/SQLTransactionSyncCallback.idl Source/WebCore/storage/DatabaseCallback.h Source/WebCore/storage/IDBFactoryBackendInterface.h Source/WebCore/storage/SQLStatementErrorCallback.idl Source/WebCore/storage/IDBFactoryBackendImpl.h Source/WebCore/storage/DatabaseSync.cpp Source/WebCore/storage/AbstractDatabase.h Source/WebCore/storage/DatabaseSync.idl Source/WebCore/storage/IDBCallbacks.h Source/WebCore/storage/SQLTransactionCallback.idl Source/WebCore/storage/SQLException.h Source/WebCore/storage/IDBFactory.h Source/WebCore/storage/SQLTransactionErrorCallback.idl Source/WebCore/storage/DatabaseSync.h Source/WebCore/storage/SQLStatementCallback.idl Source/WebCore/storage/SQLTransactionSync.idl Source/WebCore/storage/DatabaseCallback.idl Source/WebCore/storage/IDBEventDispatcher.h Source/WebCore/storage/IDBFactory.cpp Source/WebCore/storage/IDBTransactionCallbacks.h Source/WebCore/editing/EditingStyle.h Source/WebCore/editing/ApplyBlockElementCommand.h Source/WebCore/html/ButtonInputType.cpp Source/WebCore/html/SubmitInputType.h Source/WebCore/html/WeekInputType.cpp Source/WebCore/html/SearchInputType.cpp Source/WebCore/html/IsIndexInputType.h Source/WebCore/html/DOMFormData.idl Source/WebCore/html/TelephoneInputType.h Source/WebCore/html/BaseButtonInputType.h Source/WebCore/html/MonthInputType.cpp Source/WebCore/html/ValidationMessage.cpp Source/WebCore/html/BaseDateAndTimeInputType.cpp Source/WebCore/html/WeekInputType.h Source/WebCore/html/TelephoneInputType.cpp Source/WebCore/html/NumberInputType.h Source/WebCore/html/BaseDateAndTimeInputType.h Source/WebCore/html/RangeInputType.h Source/WebCore/html/ButtonInputType.h Source/WebCore/html/EmailInputType.h Source/WebCore/html/URLInputType.cpp Source/WebCore/html/DateInputType.h Source/WebCore/html/DOMFormData.cpp Source/WebCore/html/MonthInputType.h Source/WebCore/html/TimeInputType.cpp Source/WebCore/html/ColorInputType.h Source/WebCore/html/DateInputType.cpp Source/WebCore/html/DateTimeLocalInputType.h Source/WebCore/html/BaseCheckableInputType.h Source/WebCore/html/SearchInputType.h Source/WebCore/html/DOMFormData.h Source/WebCore/html/DateTimeLocalInputType.cpp Source/WebCore/html/DateTimeInputType.h Source/WebCore/html/TextFieldInputType.h Source/WebCore/html/CheckboxInputType.h Source/WebCore/html/HiddenInputType.h Source/WebCore/html/PasswordInputType.h Source/WebCore/html/IsIndexInputType.cpp Source/WebCore/html/ResetInputType.h Source/WebCore/html/TimeInputType.h Source/WebCore/html/HTMLOutputElement.cpp Source/WebCore/html/BaseTextInputType.h Source/WebCore/html/ColorInputType.cpp Source/WebCore/html/RadioInputType.h Source/WebCore/html/URLInputType.h Source/WebCore/html/HTMLOutputElement.h Source/WebCore/html/DateTimeInputType.cpp Source/WebCore/html/TextInputType.cpp Source/WebCore/html/TextInputType.h Source/WebCore/html/ValidationMessage.h Source/WebCore/webaudio/AudioGain.h Source/WebCore/webaudio/AudioListener.h Source/WebCore/webaudio/AudioBuffer.cpp Source/WebCore/webaudio/AudioChannelMerger.h Source/WebCore/webaudio/AudioChannelMerger.cpp Source/WebCore/webaudio/AudioListener.idl Source/WebCore/webaudio/AudioBuffer.idl Source/WebCore/webaudio/AudioSourceNode.idl Source/WebCore/webaudio/AudioChannelMerger.idl Source/WebCore/webaudio/AudioSourceNode.h Source/WebCore/webaudio/AudioBuffer.h Source/WebCore/webaudio/AudioParam.idl Source/WebCore/webaudio/AudioParam.h Source/WebCore/webaudio/AudioGain.idl Source/WebCore/webaudio/AudioListener.cpp Source/WebCore/inspector/InspectorFrontendClient.h Source/WebCore/inspector/InspectorResourceAgent.h Source/WebCore/inspector/InspectorClient.cpp Source/WebCore/inspector/InspectorDatabaseAgent.cpp Source/WebCore/inspector/ScriptArguments.cpp Source/WebCore/inspector/InspectorValues.cpp Source/WebCore/inspector/InspectorWorkerResource.h Source/WebCore/inspector/InspectorDOMStorageAgent.h Source/WebCore/inspector/InspectorFrontendClientLocal.cpp Source/WebCore/inspector/ScriptCallFrame.cpp Source/WebCore/inspector/InspectorInstrumentation.h Source/WebCore/inspector/ScriptGCEventListener.h Source/WebCore/inspector/InspectorDOMStorageAgent.cpp Source/WebCore/inspector/ScriptArguments.h Source/WebCore/inspector/InspectorFrontendClientLocal.h Source/WebCore/inspector/front-end/CookieParser.js Source/WebCore/inspector/front-end/ResourceTimingView.js Source/WebCore/inspector/front-end/HelpScreen.js Source/WebCore/inspector/front-end/HeapSnapshotView.js Source/WebCore/inspector/front-end/NetworkItemView.js Source/WebCore/inspector/front-end/AuditFormatters.js Source/WebCore/inspector/front-end/CSSStyleModel.js Source/WebCore/inspector/front-end/TabbedPane.js Source/WebCore/inspector/front-end/ExtensionRegistryStub.js Source/WebCore/inspector/front-end/ExtensionCommon.js Source/WebCore/inspector/front-end/ShortcutsHelp.js Source/WebCore/inspector/front-end/AuditRules.js Source/WebCore/inspector/front-end/GoToLineDialog.js Source/WebCore/inspector/front-end/DebuggerModel.js Source/WebCore/inspector/front-end/DOMSyntaxHighlighter.js Source/WebCore/inspector/front-end/WorkersSidebarPane.js Source/WebCore/inspector/front-end/ExtensionAuditCategory.js Source/WebCore/inspector/front-end/InjectedFakeWorker.js Source/WebCore/inspector/front-end/AuditCategories.js Source/WebCore/inspector/ScriptCallFrame.h Source/WebCore/inspector/InspectorDatabaseAgent.h Source/JavaScriptCore/runtime/Terminator.h Source/JavaScriptCore/wtf/SizeLimits.cpp Source/JavaScriptCore/wtf/MD5.h Source/JavaScriptCore/wtf/Complex.h Copyright: 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/page/BarInfo.idl Source/WebCore/page/Screen.cpp Source/WebCore/page/Screen.idl Source/WebCore/page/SecurityOrigin.cpp Source/WebCore/page/animation/CompositeAnimation.cpp Source/WebCore/page/animation/KeyframeAnimation.cpp Source/WebCore/page/animation/AnimationBase.h Source/WebCore/page/animation/CompositeAnimation.h Source/WebCore/page/animation/AnimationController.h Source/WebCore/page/animation/KeyframeAnimation.h Source/WebCore/page/animation/ImplicitAnimation.cpp Source/WebCore/page/animation/ImplicitAnimation.h Source/WebCore/page/DOMSelection.h Source/WebCore/page/BarInfo.h Source/WebCore/page/Screen.h Source/WebCore/page/Console.h Source/WebCore/page/Console.cpp Source/WebCore/loader/icon/PageURLRecord.h Source/WebCore/loader/icon/IconRecord.cpp Source/WebCore/loader/icon/IconRecord.h Source/WebCore/bindings/js/JSHTMLSelectElementCustom.h Source/WebCore/bindings/js/JSCustomSQLStatementErrorCallback.cpp Source/WebCore/bindings/js/JSSQLResultSetRowListCustom.cpp Source/WebCore/bindings/js/JSSQLTransactionCustom.cpp Source/WebCore/bindings/js/JSCustomVoidCallback.cpp Source/WebCore/dom/ExceptionBase.h Source/WebCore/dom/EventException.idl Source/WebCore/dom/DOMCoreException.idl Source/WebCore/platform/sql/SQLiteAuthorizer.cpp Source/WebCore/platform/sql/SQLValue.cpp Source/WebCore/platform/sql/SQLValue.h Source/WebCore/platform/graphics/mac/ColorMac.h Source/WebCore/platform/FloatConversion.h Source/WebCore/platform/mac/SoftLinking.h Source/WebCore/platform/mac/WebCoreObjCExtras.mm Source/WebCore/platform/mac/WebCoreObjCExtras.h Source/WebCore/platform/mac/AutodrainedPool.mm Source/WebCore/platform/AutodrainedPool.h Source/WebCore/storage/DatabaseAuthorizer.h Source/WebCore/storage/DatabaseAuthorizer.cpp Source/WebCore/storage/SQLError.idl Source/WebCore/storage/SQLResultSet.h Source/WebCore/storage/SQLResultSetRowList.cpp Source/WebCore/storage/SQLResultSetRowList.idl Source/WebCore/storage/ChangeVersionWrapper.h Source/WebCore/storage/Database.idl Source/WebCore/storage/SQLTransaction.h Source/WebCore/storage/SQLTransactionCallback.h Source/WebCore/storage/SQLResultSet.cpp Source/WebCore/storage/ChangeVersionWrapper.cpp Source/WebCore/storage/SQLStatementErrorCallback.h Source/WebCore/storage/DatabaseTrackerClient.h Source/WebCore/storage/SQLError.h Source/WebCore/storage/SQLResultSet.idl Source/WebCore/storage/SQLStatementCallback.h Source/WebCore/storage/SQLStatement.cpp Source/WebCore/storage/SQLStatement.h Source/WebCore/storage/SQLTransaction.idl Source/WebCore/storage/SQLTransactionErrorCallback.h Source/WebCore/storage/SQLResultSetRowList.h Source/WebCore/history/CachedFramePlatformData.h Source/WebCore/editing/SmartReplace.h Source/WebCore/editing/SmartReplaceCF.cpp Source/WebCore/editing/SmartReplace.cpp Source/WebCore/inspector/InjectedScriptSource.js Source/WebCore/inspector/InspectorFrontendHost.h Source/WebCore/inspector/front-end/utilities.js Source/WebCore/inspector/front-end/SidebarPane.js Source/WebCore/inspector/front-end/PropertiesSidebarPane.js Source/WebCore/inspector/front-end/MetricsSidebarPane.js Source/WebCore/inspector/front-end/treeoutline.js Source/WebCore/xml/XMLHttpRequestException.idl Source/WebCore/xml/XSLTUnicodeSort.h Source/WebCore/xml/XPathException.idl Source/JavaScriptCore/API/JSStringRefBSTR.h Source/JavaScriptCore/API/JSStringRefBSTR.cpp Source/JavaScriptCore/wtf/MallocZoneSupport.h Source/JavaScriptCore/wtf/DisallowCType.h Copyright: 2007 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/DOMSelection.idl Source/WebCore/inspector/InjectedScriptHost.h Source/WebCore/inspector/front-end/Section.js Source/WebCore/inspector/front-end/PropertiesSection.js Copyright: 2007 Apple Inc. 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/page/WindowFeatures.h Copyright: 2003, 2007, 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/BarInfo.cpp Source/WebCore/dom/StaticNodeList.cpp Copyright: 2007, 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/OriginAccessEntry.cpp Source/WebCore/page/ContextMenuProvider.h Source/WebCore/page/OriginAccessEntry.h Source/WebCore/loader/ThreadableLoader.cpp Source/WebCore/loader/ThreadableLoader.h Source/WebCore/loader/ThreadableLoaderClientWrapper.h Source/WebCore/loader/WorkerThreadableLoader.h Source/WebCore/loader/DocumentThreadableLoader.h Source/WebCore/bindings/js/ScriptFunctionCall.h Source/WebCore/bindings/js/JSMessagePortCustom.h Source/WebCore/bindings/js/ScriptObject.cpp Source/WebCore/bindings/js/JSSharedWorkerCustom.cpp Source/WebCore/bindings/js/ScriptObject.h Source/WebCore/bindings/js/JSDesktopNotificationsCustom.cpp Source/WebCore/bindings/js/ScriptEventListener.cpp Source/WebCore/bindings/js/ScriptFunctionCall.cpp Source/WebCore/bindings/js/ScriptEventListener.h Source/WebCore/bindings/js/JSMessageEventCustom.cpp Source/WebCore/bindings/generic/RuntimeEnabledFeatures.h Source/WebCore/bindings/generic/BindingSecurityBase.cpp Source/WebCore/bindings/generic/BindingSecurity.h Source/WebCore/bindings/generic/BindingSecurityBase.h Source/WebCore/bindings/generic/GenericBinding.h Source/WebCore/bindings/generic/RuntimeEnabledFeatures.cpp Source/WebCore/bindings/scripts/test/TestCallback.idl Source/WebCore/dom/MessagePortChannel.h Source/WebCore/dom/ErrorEvent.cpp Source/WebCore/dom/default/PlatformMessagePortChannel.h Source/WebCore/dom/default/PlatformMessagePortChannel.cpp Source/WebCore/dom/ErrorEvent.h Source/WebCore/dom/MessagePortChannel.cpp Source/WebCore/dom/ErrorEvent.idl Source/WebCore/rendering/RenderRubyRun.h Source/WebCore/rendering/RenderRubyBase.h Source/WebCore/rendering/RenderRuby.h Source/WebCore/rendering/RenderRubyBase.cpp Source/WebCore/rendering/RenderRuby.cpp Source/WebCore/rendering/RenderRubyRun.cpp Source/WebCore/rendering/RenderRubyText.h Source/WebCore/websockets/WebSocket.cpp Source/WebCore/websockets/WebSocketHandshake.h Source/WebCore/websockets/ThreadableWebSocketChannel.h Source/WebCore/websockets/ThreadableWebSocketChannel.cpp Source/WebCore/websockets/WebSocketChannel.cpp Source/WebCore/websockets/ThreadableWebSocketChannelClientWrapper.h Source/WebCore/websockets/WebSocketChannel.h Source/WebCore/websockets/WebSocketChannelClient.h Source/WebCore/websockets/WebSocket.h Source/WebCore/platform/DateComponents.cpp Source/WebCore/platform/sql/SQLiteFileSystem.cpp Source/WebCore/platform/sql/SQLiteFileSystem.h Source/WebCore/platform/network/SocketStreamHandleBase.cpp Source/WebCore/platform/network/SocketStreamErrorBase.cpp Source/WebCore/platform/network/HTTPHeaderMap.cpp Source/WebCore/platform/network/qt/SocketStreamError.h Source/WebCore/platform/CrossThreadCopier.cpp Source/WebCore/platform/DateComponents.h Source/WebCore/platform/graphics/opentype/OpenTypeSanitizer.h Source/WebCore/platform/graphics/opentype/OpenTypeSanitizer.cpp Source/WebCore/platform/text/TextEncodingDetectorNone.cpp Source/WebCore/platform/text/TextEncodingDetector.h Source/WebCore/platform/audio/Panner.h Source/WebCore/css/themeChromiumSkia.css Source/WebCore/css/themeChromiumLinux.css Source/WebCore/workers/DedicatedWorkerThread.h Source/WebCore/workers/DedicatedWorkerContext.h Source/WebCore/workers/DedicatedWorkerContext.cpp Source/WebCore/workers/DefaultSharedWorkerRepository.cpp Source/WebCore/workers/WorkerReportingProxy.h Source/WebCore/workers/DedicatedWorkerContext.idl Source/WebCore/workers/WorkerContextProxy.h Source/WebCore/workers/SharedWorkerThread.h Source/WebCore/workers/SharedWorkerRepository.h Source/WebCore/workers/DedicatedWorkerThread.cpp Source/WebCore/workers/SharedWorkerContext.idl Source/WebCore/workers/WorkerRunLoop.h Source/WebCore/workers/SharedWorkerContext.h Source/WebCore/workers/WorkerObjectProxy.h Source/WebCore/workers/SharedWorkerContext.cpp Source/WebCore/workers/WorkerLoaderProxy.h Source/WebCore/workers/DefaultSharedWorkerRepository.h Source/WebCore/workers/WorkerRunLoop.cpp Source/WebCore/workers/SharedWorkerThread.cpp Source/WebCore/notifications/NotificationCenter.h Source/WebCore/notifications/NotificationCenter.cpp Source/WebCore/notifications/NotificationPresenter.h Source/WebCore/notifications/NotificationContents.h Source/WebCore/storage/SQLTransactionCoordinator.cpp Source/WebCore/storage/SQLTransactionClient.cpp Source/WebCore/storage/SQLTransactionCoordinator.h Source/WebCore/storage/SQLTransactionClient.h Source/WebCore/editing/ReplaceNodeWithSpanCommand.h Source/WebCore/editing/ReplaceNodeWithSpanCommand.cpp Source/WebCore/inspector/InspectorTimelineAgent.h Source/WebCore/inspector/InspectorValues.h Source/WebCore/inspector/TimelineRecordFactory.h Source/WebCore/inspector/front-end/SourceHTMLTokenizer.re2js Source/WebCore/inspector/front-end/TimelinePanel.js Source/WebCore/inspector/front-end/SourceTokenizer.js Source/WebCore/inspector/front-end/Settings.js Source/WebCore/inspector/front-end/SourceHTMLTokenizer.js Source/WebCore/inspector/front-end/SourceJavaScriptTokenizer.re2js Source/WebCore/inspector/front-end/StatusBarButton.js Source/WebCore/inspector/front-end/TextEditorModel.js Source/WebCore/inspector/front-end/TimelineOverviewPane.js Source/WebCore/inspector/front-end/SourceCSSTokenizer.re2js Source/WebCore/inspector/front-end/Popover.js Source/WebCore/inspector/front-end/TimelineAgent.js Source/WebCore/inspector/front-end/AuditResultView.js Source/WebCore/inspector/front-end/InspectorFrontendHostStub.js Source/WebCore/inspector/front-end/SourceJavaScriptTokenizer.js Source/WebCore/inspector/front-end/RemoteObject.js Source/WebCore/inspector/front-end/ContextMenu.js Source/WebCore/inspector/front-end/SourceCSSTokenizer.js Source/WebCore/inspector/front-end/TestController.js Source/WebCore/inspector/front-end/SourceFrame.js Source/WebCore/inspector/TimelineRecordFactory.cpp Source/WebCore/inspector/InspectorTimelineAgent.cpp Source/JavaScriptCore/wtf/url/wtfurl.gyp Source/JavaScriptCore/wtf/ThreadIdentifierDataPthreads.cpp Source/JavaScriptCore/wtf/ThreadIdentifierDataPthreads.h Source/ThirdParty/gtest/include/gtest/internal/gtest-tuple.h Source/ThirdParty/gtest/include/gtest/internal/gtest-tuple.h.pump Source/ThirdParty/gtest/samples/sample10_unittest.cc Source/ThirdParty/gtest/samples/sample9_unittest.cc Source/ThirdParty/gtest/test/gtest-listener_test.cc Source/ThirdParty/gtest/test/run_tests_util_test.py Source/ThirdParty/gtest/test/gtest-unittest-api_test.cc Source/ThirdParty/gtest/test/gtest_shuffle_test.py Source/ThirdParty/gyp/gyp Source/ThirdParty/gyp/gyp_dummy.c Source/ThirdParty/gyp/gyp.bat Source/ThirdParty/gyp/gyptest.py Source/ThirdParty/gyp/setup.py Copyright: 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/page/EventSource.h Copyright: 2009 Ericsson AB 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/DOMSelection.cpp Copyright: 2007, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/Location.cpp Source/WebCore/page/Location.h Source/WebCore/loader/archive/ArchiveResource.cpp Source/WebCore/loader/archive/ArchiveResource.h Source/WebCore/platform/cf/SharedBufferCF.cpp Source/WebCore/xml/XSLTProcessor.idl Source/JavaScriptCore/wtf/text/StringBuffer.h Copyright: 2008, 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/SecurityOrigin.h Source/WebCore/page/Console.idl Source/WebCore/bindings/js/JSCustomVoidCallback.h Source/WebCore/bindings/js/JSEventCustom.cpp Source/WebCore/bindings/js/JSHTMLFrameElementCustom.cpp Source/WebCore/dom/SelectorNodeList.h Source/WebCore/dom/EventException.h Source/WebCore/dom/StaticNodeList.h Source/WebCore/dom/ExceptionBase.cpp Source/WebCore/dom/SelectorNodeList.cpp Source/WebCore/dom/DOMCoreException.h Source/WebCore/platform/FileChooser.cpp Source/WebCore/platform/posix/FileSystemPOSIX.cpp Source/WebCore/storage/SQLTransaction.cpp Source/WebCore/storage/DatabaseTracker.h Source/WebCore/storage/Database.h Source/WebCore/storage/Database.cpp Source/WebCore/storage/DatabaseTask.h Source/WebCore/storage/DatabaseThread.h Source/WebCore/storage/DatabaseTracker.cpp Source/WebCore/storage/DatabaseTask.cpp Source/WebCore/storage/DatabaseDetails.h Source/WebCore/storage/DatabaseThread.cpp Source/WebCore/inspector/front-end/Panel.js Source/WebCore/inspector/front-end/Database.js Source/WebCore/inspector/front-end/ResourceCategory.js Source/WebCore/inspector/front-end/Resource.js Source/WebCore/inspector/front-end/FontView.js Source/WebCore/inspector/front-end/ImageView.js Source/WebCore/xml/XPathException.h Source/WebCore/xml/XMLHttpRequestException.h Source/JavaScriptCore/runtime/SymbolTable.h Source/JavaScriptCore/runtime/JSVariableObject.h Source/JavaScriptCore/runtime/JSVariableObject.cpp Source/JavaScriptCore/wtf/MainThread.cpp Source/JavaScriptCore/wtf/ThreadFunctionInvocation.h Copyright: 2007, 2008 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/SecurityOriginHash.h Source/WebCore/page/WorkerNavigator.idl Source/WebCore/page/Location.idl Source/WebCore/loader/archive/ArchiveFactory.h Source/WebCore/loader/archive/ArchiveFactory.cpp Source/WebCore/loader/archive/Archive.h Source/WebCore/loader/archive/ArchiveResourceCollection.cpp Source/WebCore/loader/archive/ArchiveResourceCollection.h Source/WebCore/bindings/js/JSDOMWindowShell.h Source/WebCore/bindings/js/JSXSLTProcessorCustom.cpp Source/WebCore/bindings/js/StringSourceProvider.h Source/WebCore/bindings/js/JSHistoryCustom.cpp Source/WebCore/bindings/js/JSClipboardCustom.cpp Source/WebCore/dom/Clipboard.idl Source/WebCore/rendering/RenderLineBoxList.cpp Source/WebCore/rendering/RenderReplica.h Source/WebCore/rendering/RenderReplica.cpp Source/WebCore/platform/graphics/FloatQuad.cpp Source/WebCore/platform/graphics/win/SimpleFontDataCairoWin.cpp Source/WebCore/platform/graphics/FloatQuad.h Source/WebCore/platform/mac/SchedulePairMac.mm Source/WebCore/platform/cf/SchedulePair.h Source/WebCore/platform/cf/SchedulePair.cpp Source/WebCore/css/WebKitCSSKeyframeRule.idl Source/WebCore/css/WebKitCSSTransformValue.idl Source/WebCore/css/WebKitCSSKeyframesRule.idl Source/WebCore/workers/WorkerLocation.idl Source/WebCore/accessibility/AccessibilityList.h Source/WebCore/accessibility/AccessibilityTable.cpp Source/WebCore/accessibility/AccessibilityImageMapLink.h Source/WebCore/accessibility/AccessibilityListBoxOption.h Source/WebCore/accessibility/AccessibilityImageMapLink.cpp Source/WebCore/accessibility/AccessibilityRenderObject.h Source/WebCore/accessibility/AccessibilityRenderObject.cpp Source/WebCore/accessibility/AccessibilityListBox.cpp Source/WebCore/accessibility/AccessibilityTable.h Source/WebCore/accessibility/AccessibilityListBox.h Source/WebCore/accessibility/AccessibilityTableRow.h Source/WebCore/accessibility/AccessibilityTableCell.h Source/WebCore/accessibility/AccessibilityTableColumn.h Source/WebCore/accessibility/AccessibilityList.cpp Source/WebCore/accessibility/AccessibilityTableCell.cpp Source/WebCore/accessibility/AccessibilityTableRow.cpp Source/WebCore/accessibility/AccessibilityTableColumn.cpp Source/WebCore/accessibility/AccessibilityTableHeaderContainer.cpp Source/WebCore/accessibility/AccessibilityTableHeaderContainer.h Source/WebCore/accessibility/AccessibilityListBoxOption.cpp Source/WebCore/storage/OriginUsageRecord.cpp Source/WebCore/storage/OriginQuotaManager.h Source/WebCore/storage/OriginQuotaManager.cpp Source/WebCore/storage/OriginUsageRecord.h Source/WebCore/plugins/PluginQuirkSet.h Source/WebCore/html/ImageData.cpp Source/WebCore/html/HTMLTableRowsCollection.cpp Source/WebCore/html/HTMLTableRowsCollection.h Source/WebCore/inspector/front-end/TextPrompt.js Source/WebCore/xml/XMLHttpRequestUpload.idl Source/JavaScriptCore/bytecode/SamplingTool.h Source/JavaScriptCore/bytecode/Instruction.h Source/JavaScriptCore/parser/SourceCode.h Source/JavaScriptCore/runtime/InitializeThreading.h Source/JavaScriptCore/runtime/JSGlobalData.cpp Source/JavaScriptCore/runtime/TimeoutChecker.h Source/JavaScriptCore/runtime/ExceptionHelpers.h Source/JavaScriptCore/runtime/CallData.h Source/JavaScriptCore/runtime/InitializeThreading.cpp Source/JavaScriptCore/runtime/ConstructData.h Source/JavaScriptCore/interpreter/RegisterFile.cpp Source/JavaScriptCore/interpreter/Interpreter.h Source/JavaScriptCore/debugger/DebuggerCallFrame.cpp Source/JavaScriptCore/debugger/DebuggerCallFrame.h Source/JavaScriptCore/bytecompiler/Label.h Source/JavaScriptCore/bytecompiler/RegisterID.h Source/JavaScriptCore/bytecompiler/LabelScope.h Source/JavaScriptCore/wtf/AVLTree.h Source/JavaScriptCore/wtf/Locker.h Source/JavaScriptCore/wtf/unicode/Collator.h Source/JavaScriptCore/wtf/unicode/CollatorDefault.cpp Source/JavaScriptCore/wtf/unicode/icu/CollatorICU.cpp Source/JavaScriptCore/wtf/SegmentedVector.h Source/JavaScriptCore/wtf/text/AtomicStringHash.h Source/JavaScriptCore/profiler/ProfileNode.cpp Source/JavaScriptCore/profiler/Profiler.cpp Source/JavaScriptCore/profiler/Profiler.h Source/JavaScriptCore/profiler/ProfileNode.h Copyright: 2008 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/EventSource.idl Copyright: 2009 Ericsson AB. 2010, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/animation/AnimationBase.cpp Source/WebCore/page/animation/AnimationController.cpp Source/WebCore/bindings/js/JSElementCustom.cpp Source/WebCore/bindings/js/JSCallbackData.cpp Source/WebCore/bindings/js/JSCallbackData.h Source/WebCore/bindings/js/JSAttrCustom.cpp Source/WebCore/xml/XSLTUnicodeSort.cpp Source/JavaScriptCore/wtf/ASCIICType.h Copyright: 2007, 2008, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/WebKitAnimation.idl Source/JavaScriptCore/wtf/PassTraits.h Copyright: 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/page/EventSource.cpp Copyright: 2009 Ericsson AB 2010 Apple Inc. 2011, Code Aurora Forum. License: BSD-3-clause Files: Source/WebCore/loader/DocumentWriter.h Source/WebCore/loader/DocumentWriter.cpp Copyright: 2010. Adam Barth. License: BSD-3-clause Files: Source/WebCore/loader/NetscapePlugInStreamLoader.cpp Source/WebCore/loader/FrameLoaderTypes.h Source/WebCore/loader/SubresourceLoaderClient.h Source/WebCore/loader/NavigationAction.cpp Source/WebCore/loader/NavigationAction.h Source/WebCore/platform/graphics/FontFallbackList.cpp Source/WebKit/qt/WebCoreSupport/WebSystemInterface.h Copyright: 2006 Apple Computer, Inc. License: BSD-3-clause Files: Source/WebCore/loader/PolicyChecker.cpp Source/WebCore/loader/PolicyCallback.cpp Source/WebCore/loader/HistoryController.cpp Source/WebCore/loader/ResourceLoadNotifier.cpp Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: BSD-3-clause Files: Source/WebCore/loader/FormState.h Source/WebCore/loader/FormState.cpp Source/WebCore/platform/graphics/GlyphMetricsMap.h Copyright: 2006, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/ResourceLoadNotifier.h Source/WebCore/loader/PolicyCallback.h Source/WebCore/loader/PolicyChecker.h Source/WebCore/loader/HistoryController.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: BSD-3-clause Files: Source/WebCore/loader/SubresourceLoader.h Copyright: 2005, 2006, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/MainResourceLoader.h Source/WebCore/platform/graphics/StringTruncator.h Source/WebCore/platform/graphics/StringTruncator.cpp Copyright: 2005, 2006, 2007 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/appcache/ApplicationCacheHost.h Source/WebCore/rendering/svg/RenderSVGModelObject.h Source/WebCore/rendering/svg/RenderSVGModelObject.cpp Source/WebCore/platform/SecureTextInput.h Source/WebCore/html/HTMLElementsAllInOne.cpp Source/WebCore/html/HTMLDataListElement.idl Source/ThirdParty/gtest/codegear/gtest_all.cc Source/ThirdParty/gtest/codegear/gtest_link.cc Source/ThirdParty/gtest/scripts/fuse_gtest_files.py Source/ThirdParty/gtest/scripts/upload_gtest.py Source/ThirdParty/gtest/test/gtest_throw_on_failure_ex_test.cc Source/ThirdParty/gtest/test/gtest_help_test_.cc Source/ThirdParty/gtest/test/gtest_all_test.cc Source/ThirdParty/gtest/test/gtest_shuffle_test_.cc Source/ThirdParty/gtest/test/gtest_help_test.py Source/ThirdParty/gtest/test/gtest_throw_on_failure_test_.cc Source/ThirdParty/gtest/test/gtest_throw_on_failure_test.py Copyright: 2009, Google Inc. License: BSD-3-clause Files: Source/WebCore/loader/NetscapePlugInStreamLoader.h Copyright: 2005, 2006, 2008 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/DocumentLoader.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/icon/IconDatabaseClient.h Source/WebCore/platform/mac/FileSystemMac.mm Source/WebCore/platform/cf/FileSystemCF.cpp Copyright: 2007, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/icon/PageURLRecord.cpp Source/WebCore/platform/graphics/mac/GlyphPageTreeNodeMac.cpp Copyright: 2006, 2007 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/WorkerThreadableLoader.cpp Source/WebCore/websockets/WorkerThreadableWebSocketChannel.h Source/WebCore/websockets/WorkerThreadableWebSocketChannel.cpp Source/WebCore/platform/CrossThreadCopier.h Copyright: 2009, 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/loader/FrameLoaderClient.h Copyright: 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/MainResourceLoader.cpp Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: BSD-3-clause Files: Source/WebCore/loader/NavigationScheduler.cpp Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2009 Adam Barth. License: BSD-3-clause Files: Source/WebCore/loader/NavigationScheduler.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2009 Adam Barth. License: BSD-3-clause Files: Source/WebCore/loader/SubresourceLoader.cpp Source/WebCore/rendering/RenderListBox.h Copyright: 2006, 2007, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/SubframeLoader.cpp Copyright: 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2008 Alp Toker 2009. License: BSD-3-clause Files: Source/WebCore/loader/ResourceLoader.h Copyright: 2005, 2006 Apple Computer, Inc. License: BSD-3-clause Files: Source/WebCore/loader/ResourceLoader.cpp Copyright: 2006, 2007, 2010, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/loader/FrameLoader.cpp Copyright: 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2008 Alp Toker 2009. 2011 Kris Jordan License: BSD-3-clause Files: Source/WebCore/loader/SubframeLoader.h Source/WebCore/loader/FrameLoader.h Copyright: 2006, 2007, 2008, 2009, 2011 Apple Inc. 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2009. License: BSD-3-clause Files: Source/WebCore/loader/DocumentLoader.cpp Source/WebCore/platform/FileChooser.h Source/WebCore/platform/graphics/GlyphPageTreeNode.h Source/WebCore/platform/graphics/GlyphPageTreeNode.cpp Source/WebCore/platform/graphics/win/GlyphPageTreeNodeCGWin.cpp Source/WebCore/platform/graphics/win/FontCacheWin.cpp Source/WebCore/platform/graphics/win/SimpleFontDataCGWin.cpp Source/WebCore/platform/graphics/win/SimpleFontDataWin.cpp Source/WebCore/platform/graphics/win/GlyphPageTreeNodeCairoWin.cpp Source/WebCore/platform/mac/FileChooserMac.mm Source/WebCore/inspector/front-end/inspector.html Copyright: 2006, 2007, 2008 Apple Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/JSInjectedScriptManager.cpp Source/WebCore/bindings/js/JSInjectedScriptHostCustom.cpp Source/WebCore/inspector/InjectedScriptManager.cpp Copyright: 2007, 2008 Apple Inc. 2008 Matt Lilek 2010-2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/ScriptCachedFrameData.h Source/WebCore/bindings/js/ScriptCachedFrameData.cpp Copyright: 2008, Google Inc. 2008 Apple Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/JSInspectorFrontendHostCustom.cpp Source/WebCore/inspector/InspectorDatabaseResource.h Source/WebCore/inspector/InspectorDOMStorageResource.h Source/WebCore/inspector/InspectorFrontendHost.idl Source/WebCore/inspector/InspectorDatabaseResource.cpp Source/WebCore/inspector/InspectorDOMStorageResource.cpp Copyright: 2007, 2008 Apple Inc. 2008 Matt Lilek 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/ScriptHeapSnapshot.h Source/WebCore/bindings/js/ScriptWrappable.h Source/WebCore/platform/ScrollAnimatorWin.h Source/WebCore/platform/ScrollAnimatorWin.cpp Source/WebCore/platform/graphics/gpu/DrawingBuffer.h Source/WebCore/platform/graphics/gpu/SharedGraphicsContext3D.h Source/WebCore/platform/graphics/gpu/SolidFillShader.cpp Source/WebCore/platform/graphics/gpu/Shader.cpp Source/WebCore/platform/graphics/gpu/GraphicsContextGPU.h Source/WebCore/platform/graphics/gpu/SharedGraphicsContext3D.cpp Source/WebCore/platform/graphics/gpu/GraphicsContextGPU.cpp Source/WebCore/platform/graphics/gpu/TexShader.h Source/WebCore/platform/graphics/gpu/SolidFillShader.h Source/WebCore/platform/graphics/gpu/Shader.h Source/WebCore/platform/graphics/gpu/TilingData.cpp Source/WebCore/platform/graphics/gpu/DrawingBuffer.cpp Source/WebCore/platform/graphics/gpu/Texture.cpp Source/WebCore/platform/graphics/gpu/Texture.h Source/WebCore/platform/graphics/gpu/TexShader.cpp Source/WebCore/platform/graphics/gpu/TilingData.h Source/WebCore/platform/text/transcoder/FontTranscoder.h Source/WebCore/platform/text/transcoder/FontTranscoder.cpp Source/WebCore/platform/ScrollAnimator.cpp Source/WebCore/platform/ScrollAnimator.h Source/JavaScriptCore/wtf/url/src/URLCharacterTypes.cpp Source/JavaScriptCore/wtf/url/src/URLQueryCanonicalizer.h Source/JavaScriptCore/wtf/url/src/URLEscape.cpp Source/JavaScriptCore/wtf/url/src/URLComponent.h Source/JavaScriptCore/wtf/url/src/URLEscape.h Source/JavaScriptCore/wtf/url/src/RawURLBuffer.h Source/JavaScriptCore/wtf/url/src/URLBuffer.h Source/JavaScriptCore/wtf/url/src/URLCharacterTypes.h Source/ThirdParty/gyp/PRESUBMIT.py Source/ThirdParty/glu/gluos.h Source/ThirdParty/glu/internal_glu.h Copyright: 2010, Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/ScriptValue.h Source/WebCore/bindings/js/ScriptState.h Copyright: 2008, 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/ScriptValue.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/JSXMLHttpRequestCustom.cpp Source/WebCore/bindings/js/JSDOMWindowShell.cpp Source/WebCore/html/canvas/CanvasPixelArray.idl Source/WebCore/html/canvas/CanvasPixelArray.cpp Source/WebCore/html/canvas/CanvasPixelArray.h Source/WebCore/html/ImageData.h Source/WebCore/html/ImageData.idl Source/JavaScriptCore/bytecode/EvalCodeCache.h Source/JavaScriptCore/bytecode/SamplingTool.cpp Source/JavaScriptCore/parser/SourceProvider.h Source/JavaScriptCore/runtime/JSPropertyNameIterator.cpp Source/JavaScriptCore/runtime/JSActivation.h Source/JavaScriptCore/runtime/JSPropertyNameIterator.h Source/JavaScriptCore/runtime/ExceptionHelpers.cpp Source/JavaScriptCore/runtime/JSGlobalData.h Source/JavaScriptCore/runtime/JSActivation.cpp Source/JavaScriptCore/runtime/JSNotAnObject.h Source/JavaScriptCore/runtime/JSNotAnObject.cpp Source/JavaScriptCore/interpreter/RegisterFile.h Source/JavaScriptCore/interpreter/Register.h Copyright: 2008, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/ScriptDebugServer.h Copyright: 2008 Apple Inc. 2010-2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/JSEventSourceCustom.cpp Copyright: 2009 Ericsson AB. 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/ScriptState.cpp Copyright: 2009, 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/JSDedicatedWorkerContextCustom.cpp Copyright: 2009 Google Inc. 2009 Apple, Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/ScriptSourceCode.h Source/WebCore/bindings/js/ScriptInstance.h Source/WebCore/inspector/ScriptCallStack.cpp Source/ThirdParty/gtest/xcode/Scripts/runtests.sh Source/ThirdParty/gtest/xcode/Scripts/versiongenerate.py Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/runtests.sh Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget.cc Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget.h Source/ThirdParty/gtest/xcode/Samples/FrameworkSample/widget_test.cc Source/ThirdParty/gtest/include/gtest/gtest-param-test.h Source/ThirdParty/gtest/include/gtest/internal/gtest-filepath.h Source/ThirdParty/gtest/include/gtest/gtest-param-test.h.pump Source/ThirdParty/gtest/include/gtest/gtest-test-part.h Source/ThirdParty/gtest/src/gtest-filepath.cc Source/ThirdParty/gtest/src/gtest-test-part.cc Source/ThirdParty/gtest/src/gtest-all.cc Source/ThirdParty/gtest/src/gtest-port.cc Source/ThirdParty/gtest/scripts/pump.py Source/ThirdParty/gtest/test/gtest-param-test_test.cc Source/ThirdParty/gtest/test/gtest_sole_header_test.cc Source/ThirdParty/gtest/test/gtest-param-test2_test.cc Source/ThirdParty/gtest/test/gtest_xml_outfile1_test_.cc Source/ThirdParty/gtest/test/gtest-options_test.cc Source/ThirdParty/gtest/test/gtest_output_test.py Source/ThirdParty/gtest/test/gtest_xml_outfiles_test.py Source/ThirdParty/gtest/test/gtest_uninitialized_test_.cc Source/ThirdParty/gtest/test/gtest_uninitialized_test.py Source/ThirdParty/gtest/test/gtest-port_test.cc Source/ThirdParty/gtest/test/gtest_color_test.py Source/ThirdParty/gtest/test/gtest_color_test_.cc Source/ThirdParty/gtest/test/gtest_xml_outfile2_test_.cc Source/ThirdParty/gtest/test/gtest-param-test_test.h Source/ThirdParty/gtest/test/gtest-filepath_test.cc Source/ThirdParty/gtest/test/gtest_repeat_test.cc Source/ThirdParty/gtest/test/gtest_env_var_test.py Source/ThirdParty/gtest/test/gtest_env_var_test_.cc Source/ThirdParty/gtest/run_tests.py Copyright: 2008, Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/JSWebSocketCustom.cpp Copyright: 2009 Google Inc. 2009, 2010 Apple, Inc. License: BSD-3-clause Files: Source/WebCore/bindings/js/ScriptDebugServer.cpp Copyright: 2008, 2009 Apple Inc. 2010-2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/bindings/cpp/WebDOMCustomVoidCallback.h Copyright: Kevin Ollivier License: BSD-3-clause Files: Source/WebCore/bindings/cpp/WebDOMCustomVoidCallback.cpp Copyright: 2010 Kevin Ollivier . License: BSD-3-clause Files: Source/WebCore/bindings/scripts/test/TestObj.idl Source/WebCore/workers/SharedWorker.cpp Source/WebCore/workers/SharedWorker.idl Source/WebCore/workers/SharedWorker.h Source/WebCore/html/HTMLDataListElement.cpp Source/WebCore/inspector/front-end/heapProfiler.css Source/JavaScriptCore/wtf/CrossThreadRefCounted.h Copyright: 2009 Google Inc. 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/dom/DataTransferItems.cpp Copyright: 2011 Google Inc. 2011 Nokia Corporation and/or its subsidiary(-ies) License: BSD-3-clause Files: Source/WebCore/dom/DocumentOrderedMap.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/dom/ClassNodeList.h Copyright: 2007 Apple Inc. 2007 David Smith License: BSD-3-clause Files: Source/WebCore/dom/CrossThreadTask.h Copyright: 2009-2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/dom/DocumentOrderedMap.h Copyright: 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/dom/StaticHashSetNodeList.h Source/WebCore/dom/StaticHashSetNodeList.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) 2010 Antonio Gomes License: BSD-3-clause Files: Source/WebCore/dom/make_names.pl Copyright: 2005, 2006, 2007, 2009 Apple Inc. 2009, Julien Chaffraix 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2011 Ericsson AB. 2005, 2006, 2007, 2008, 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/dom/ClassNodeList.cpp Copyright: 2007, 2008 Apple Inc. 2007 David Smith License: BSD-3-clause Files: Source/WebCore/rendering/RenderListBox.cpp Copyright: 2006, 2007, 2008, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/rendering/RenderRubyText.cpp Source/WebCore/workers/AbstractWorker.idl Source/WebCore/notifications/Notification.idl Source/WebCore/notifications/NotificationCenter.idl Copyright: 2009 Google Inc. 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/rendering/ShadowElement.h Source/WebCore/accessibility/AXObjectCache.cpp Copyright: 2008, 2009, 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/websockets/WebSocketHandshake.cpp Copyright: 2009 Google Inc. 2011. License: BSD-3-clause Files: Source/WebCore/websockets/WebSocket.idl Copyright: 2009 Google Inc. 2010, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/platform/ScrollableArea.cpp Copyright: 2010, Google Inc. 2008, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/platform/network/HTTPParsers.cpp Copyright: 2006 Alexey Proskuryakov 2006, 2007, 2008, 2009 Apple Inc. 2009 Torch Mobile Inc. http://www.torchmobile.com/ 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/network/HTTPParsers.h Copyright: 2006 Alexey Proskuryakov 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/network/SocketStreamHandleClient.h Source/WebCore/platform/network/SocketStreamHandleBase.h Source/WebCore/platform/network/SocketStreamErrorBase.h Source/WebCore/inspector/front-end/KeyboardShortcut.js Source/WebCore/inspector/ScriptBreakpoint.h Copyright: 2009 Apple Inc. 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/network/qt/SocketStreamHandleQt.cpp Copyright: 2010 Nokia Inc. 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/network/qt/SocketStreamHandle.h Copyright: 2010 Nokia Inc. 2009 Apple Inc. 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/network/qt/SocketStreamHandlePrivate.h Copyright: 2010 Nokia Inc. License: BSD-3-clause Files: Source/WebCore/platform/graphics/Glyph.h Source/WebCore/platform/graphics/GlyphPage.h Copyright: 2006, 2007, 2008 Apple Inc. 2011. License: BSD-3-clause Files: Source/WebCore/platform/graphics/freetype/SimpleFontDataFreeType.cpp Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007, 2008 Alp Toker 2007 Holger Hans Peter Freyther License: BSD-3-clause Files: Source/WebCore/platform/graphics/freetype/GlyphPageTreeNodeFreeType.cpp Copyright: 2006, 2007 Apple Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Alp Toker License: BSD-3-clause Files: Source/WebCore/platform/graphics/pango/GlyphPageTreeNodePango.cpp Copyright: 2006, 2007 Apple Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Alp Toker 2007 Pioneer Research Center USA, Inc. License: BSD-3-clause Files: Source/WebCore/platform/graphics/pango/SimpleFontDataPango.cpp Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007, 2008 Alp Toker 2007 Holger Hans Peter Freyther 2007 Pioneer Research Center USA, Inc. License: BSD-3-clause Files: Source/WebCore/platform/graphics/GlyphBuffer.h Copyright: 2006, 2009, 2011 Apple Inc. 2007-2008 Torch Mobile Inc. License: BSD-3-clause Files: Source/WebCore/platform/graphics/mac/SimpleFontDataATSUI.mm Source/WebCore/platform/graphics/mac/SimpleFontDataCoreText.cpp Source/WebCore/platform/graphics/mac/SimpleFontDataMac.mm Copyright: 2005, 2006 Apple Computer, Inc. 2006 Alexey Proskuryakov License: BSD-3-clause Files: Source/WebCore/platform/graphics/mac/FontCacheMac.mm Source/WebCore/platform/mac/WebFontCache.mm Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2007 Nicholas Shanks License: BSD-3-clause Files: Source/WebCore/platform/graphics/FontDescription.cpp Copyright: 2007 Nicholas Shanks 2008 Apple Inc. License: BSD-3-clause Files: Source/WebCore/platform/graphics/SimpleFontData.cpp Copyright: 2005, 2008, 2010 Apple Inc. 2006 Alexey Proskuryakov License: BSD-3-clause Files: Source/WebCore/platform/graphics/FontCache.h Copyright: 2006, 2008 Apple Computer, Inc. 2007-2008 Torch Mobile, Inc. License: BSD-3-clause Files: Source/WebCore/platform/graphics/FontCache.cpp Copyright: 2006, 2008 Apple Inc. 2007 Nicholas Shanks License: BSD-3-clause Files: Source/WebCore/platform/PlatformGestureRecognizer.cpp Source/WebCore/platform/PlatformGestureRecognizer.h Copyright: 2011, Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/KURLGoogle.cpp Copyright: 2004, 2007, 2008, 2009 Apple Inc. 2008, 2009, 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/text/TextEncodingDetectorICU.cpp Copyright: 2008, 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/text/LineEnding.h Source/WebCore/platform/text/LineEnding.cpp Copyright: 2005, 2006, 2008 Apple Inc. 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/text/mac/make-charset-table.pl Copyright: 2003, 2004, 2005, 2006 Apple Computer, Inc. License: BSD-3-clause Files: Source/WebCore/platform/mac/WebCoreNSStringExtras.h Copyright: 2005, 2007 Apple Computer, Inc. License: BSD-3-clause Files: Source/WebCore/platform/mac/WebCoreNSStringExtras.mm Copyright: 2005, 2007 Apple Inc. License: BSD-3-clause Files: Source/WebCore/platform/KURLGooglePrivate.h Copyright: 2008, 2009, 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/platform/qt/FileSystemQt.cpp Copyright: 2007 Staikos Computing Services Inc. 2007 Holger Hans Peter Freyther 2008 Apple, Inc. 2008 Collabora, Ltd. 2010 Sencha, Inc. License: BSD-3-clause Files: Source/WebCore/platform/qt/PlatformScreenQt.cpp Source/WebKit/qt/WebCoreSupport/InspectorClientQt.cpp Copyright: 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther License: BSD-3-clause Files: Source/WebCore/platform/FileSystem.h Copyright: 2007, 2008, 2011 Apple Inc. 2008 Collabora, Ltd. License: BSD-3-clause Files: Source/WebCore/platform/image-encoders/PNGImageEncoder.cpp Copyright: 2006-2009, Google Inc. 2009 Torch Mobile, Inc. 2009-2010. 2005 Google Inc.) License: BSD-3-clause Files: Source/WebCore/css/themeWinQuirks.css Source/WebCore/css/themeWin.css Source/ThirdParty/gtest/include/gtest/gtest-typed-test.h Source/ThirdParty/gtest/include/gtest/internal/gtest-type-util.h.pump Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util-generated.h Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util-generated.h.pump Source/ThirdParty/gtest/include/gtest/internal/gtest-param-util.h Source/ThirdParty/gtest/include/gtest/internal/gtest-type-util.h Source/ThirdParty/gtest/src/gtest-typed-test.cc Source/ThirdParty/gtest/samples/sample8_unittest.cc Source/ThirdParty/gtest/samples/sample7_unittest.cc Source/ThirdParty/gtest/samples/prime_tables.h Source/ThirdParty/gtest/samples/sample6_unittest.cc Source/ThirdParty/gtest/test/gtest-typed-test2_test.cc Source/ThirdParty/gtest/test/gtest-typed-test_test.h Source/ThirdParty/gtest/test/run_tests_util.py Source/ThirdParty/gtest/test/gtest-test-part_test.cc Source/ThirdParty/gtest/test/gtest-typed-test_test.cc Copyright: 2008 Google Inc. License: BSD-3-clause Files: Source/WebCore/fileapi/FileStreamProxy.h Copyright: 2010 Google Inc. 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/fileapi/FileReader.idl Source/WebCore/fileapi/DOMFileSystem.idl Source/WebCore/fileapi/FileWriter.idl Source/WebCore/storage/IDBRequest.idl Source/WebCore/html/CheckboxInputType.cpp Source/WebCore/html/NumberInputType.cpp Source/WebCore/html/BaseButtonInputType.cpp Source/WebCore/html/PasswordInputType.cpp Source/WebCore/html/RangeInputType.cpp Source/WebCore/html/FileInputType.h Source/WebCore/html/SubmitInputType.cpp Source/WebCore/html/ImageInputType.h Source/WebCore/html/HiddenInputType.cpp Source/WebCore/html/BaseCheckableInputType.cpp Source/WebCore/html/ResetInputType.cpp Source/WebCore/html/TextFieldInputType.cpp Source/WebCore/html/InputType.h Copyright: 2010 Google Inc. 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/accessibility/AccessibilityScrollbar.h Source/WebCore/accessibility/AccessibilityScrollbar.cpp Source/JavaScriptCore/runtime/GCActivityCallback.cpp Source/JavaScriptCore/runtime/GCActivityCallbackCF.cpp Source/JavaScriptCore/runtime/GCActivityCallback.h Copyright: 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/accessibility/AccessibilityObject.cpp Copyright: 2008, 2009, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/accessibility/AccessibilityObject.h Copyright: 2008, 2009, 2011 Apple Inc. 2008 Nuanti Ltd. License: BSD-3-clause Files: Source/WebCore/notifications/Notification.h Source/WebCore/notifications/Notification.cpp Source/WebCore/inspector/front-end/TextEditorHighlighter.js Copyright: 2009 Google Inc. 2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/storage/StorageEventDispatcher.h Source/WebCore/inspector/front-end/audits.css Source/JavaScriptCore/wtf/MessageQueue.h Copyright: 2008 Apple Inc. 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/storage/SQLStatementSync.cpp Copyright: 2007 Apple Inc. 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/editing/SmartReplaceICU.cpp Copyright: 2007 Apple Inc. 2008 Tony Chang License: BSD-3-clause Files: Source/WebCore/editing/qt/SmartReplaceQt.cpp Copyright: 2010 Robert Hogan . 2007,2008,2009 Apple Inc. License: BSD-3-clause Files: Source/WebCore/html/parser/create-html-entity-table Copyright: 2010 Google Inc. 2010 Google, Inc. License: BSD-3-clause Files: Source/WebCore/html/shadow/SliderThumbElement.cpp Source/WebCore/html/shadow/SliderThumbElement.h Source/WebCore/html/shadow/ProgressShadowElement.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/html/shadow/MediaControlElements.h Source/WebCore/html/shadow/MediaControlElements.cpp Copyright: 2008, 2009, 2010, 2011 Apple Inc. License: BSD-3-clause Files: Source/WebCore/html/HTMLDataListElement.h Copyright: 2009, Google Inc. 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InspectorDebuggerAgent.h Source/WebCore/inspector/InspectorDebuggerAgent.cpp Copyright: 2010 Apple Inc. 2010-2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InjectedScript.cpp Source/WebCore/inspector/InjectedScript.h Copyright: 2010, 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/ScriptDebugListener.h Source/WebCore/inspector/front-end/WelcomeView.js Copyright: 2008 Apple Inc. 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InjectedScriptManager.h Copyright: 2007 Apple Inc. 2009-2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InspectorAgent.h Copyright: 2007, 2008, 2009, 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InspectorProfilerAgent.cpp Source/WebCore/inspector/InspectorProfilerAgent.h Copyright: 2010 Apple Inc. 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InspectorDOMAgent.cpp Copyright: 2009 Apple Inc. 2011 Google Inc. 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/ScriptCallStack.h Copyright: 2008, 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/ConsoleMessage.h Source/WebCore/inspector/ConsoleMessage.cpp Copyright: 2007, 2008 Apple Inc. 2008 Matt Lilek 2009, 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InspectorAgent.cpp Copyright: 2007, 2008, 2009, 2010 Apple Inc. 2008 Matt Lilek 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InjectedScriptHost.cpp Source/WebCore/inspector/InjectedScriptHost.idl Copyright: 2007, 2008 Apple Inc. 2008 Matt Lilek 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/generate-inspector-idl Copyright: 2011 Google Inc. 2011 Google, Inc. License: BSD-3-clause Files: Source/WebCore/inspector/InspectorDOMAgent.h Copyright: 2009 Apple Inc. 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/inspector.js Copyright: 2006, 2007, 2008 Apple Inc. 2007 Matt Lilek . 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/front-end/StylesSidebarPane.js Source/WebCore/inspector/front-end/EventListenersSidebarPane.js Copyright: 2007 Apple Inc. 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/front-end/Toolbar.js Source/WebCore/inspector/front-end/SearchController.js Copyright: 2006, 2007, 2008 Apple Inc. 2007 Matt Lilek . 2009 Joseph Pecoraro 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/ConsolePanel.js Copyright: 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/front-end/ResourcesPanel.js Copyright: 2007, 2008, 2010 Apple Inc. 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/front-end/Color.js Source/WebCore/inspector/front-end/CookieItemsView.js Copyright: 2009 Apple Inc. 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/front-end/TextViewer.js Copyright: 2011 Google Inc. 2010 Apple Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/BinarySearch.js Copyright: 2011 Google Inc. 2007 Apple Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/DOMAgent.js Copyright: 2009, 2010 Google Inc. 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/front-end/inspector.css Copyright: 2006, 2007, 2008 Apple Inc. 2009 Anthony Ricaud License: BSD-3-clause Files: Source/WebCore/inspector/front-end/CookiesTable.js Copyright: 2009 Apple Inc. 2009 Joseph Pecoraro 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/ConsoleView.js Source/WebCore/inspector/front-end/Drawer.js Copyright: 2007, 2008 Apple Inc. 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/front-end/TimelineGrid.js Copyright: 2007, 2008 Apple Inc. 2008, 2009 Anthony Ricaud 2009 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/ResourceHeadersView.js Copyright: 2007, 2008 Apple Inc. 2009 IBM Corp. 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/NetworkPanel.js Copyright: 2007, 2008 Apple Inc. 2008, 2009 Anthony Ricaud 2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/SummaryBar.js Copyright: 2007, 2008 Apple Inc. 2008, 2009 Anthony Ricaud License: BSD-3-clause Files: Source/WebCore/inspector/front-end/CSSCompletions.js Copyright: 2010 Nikita Vasilyev. 2010 Joseph Pecoraro. 2010 Google Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/ElementsTreeOutline.js Source/WebCore/inspector/front-end/ElementsPanel.js Copyright: 2007, 2008 Apple Inc. 2008 Matt Lilek 2009 Joseph Pecoraro License: BSD-3-clause Files: Source/WebCore/inspector/front-end/DOMStorage.js Copyright: 2008 Nokia Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/WatchExpressionsSidebarPane.js Copyright: 2009 IBM Corp. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/ResourceView.js Copyright: 2007, 2008 Apple Inc. 2009 IBM Corp. License: BSD-3-clause Files: Source/WebCore/inspector/InspectorFrontendHost.cpp Copyright: 2007, 2008 Apple Inc. 2008 Matt Lilek License: BSD-3-clause Files: Source/WebCore/inspector/xxd.pl Copyright: 2010-2011 Google Inc. License: BSD-3-clause Files: Source/WebCore/xml/XMLHttpRequest.idl Copyright: 2008, 2011 Apple Inc. License: BSD-3-clause Files: Source/JavaScriptCore/API/JSRetainPtr.h Copyright: 2005, 2006, 2007, 2010 Apple Inc. License: BSD-3-clause Files: Source/JavaScriptCore/bytecode/Opcode.h Source/JavaScriptCore/runtime/TimeoutChecker.cpp Source/JavaScriptCore/bytecompiler/BytecodeGenerator.h Source/JavaScriptCore/bytecompiler/BytecodeGenerator.cpp Copyright: 2008, 2009 Apple Inc. 2008 Cameron Zwarich License: BSD-3-clause Files: Source/JavaScriptCore/bytecode/JumpTable.cpp Source/JavaScriptCore/bytecode/Opcode.cpp Source/JavaScriptCore/bytecode/JumpTable.h Copyright: 2008 Apple Inc. 2008 Cameron Zwarich License: BSD-3-clause Files: Source/JavaScriptCore/bytecode/CodeBlock.cpp Source/JavaScriptCore/bytecode/CodeBlock.h Source/JavaScriptCore/interpreter/Interpreter.cpp Copyright: 2008, 2009, 2010 Apple Inc. 2008 Cameron Zwarich License: BSD-3-clause Files: Source/JavaScriptCore/jit/JITStubs.cpp Copyright: 2008, 2009 Apple Inc. 2008 Cameron Zwarich 2010, 2011. License: BSD-3-clause Files: Source/JavaScriptCore/jit/JITStubs.h Copyright: 2008 Apple Inc. 2010. License: BSD-3-clause Files: Source/JavaScriptCore/runtime/JSGlobalObject.cpp Copyright: 2007, 2008, 2009 Apple Inc. 2008 Cameron Zwarich License: BSD-3-clause Files: Source/JavaScriptCore/os-win32/inttypes.h Copyright: 2006 Alexander Chemeris License: BSD-3-clause Files: Source/JavaScriptCore/wtf/CurrentTime.h Copyright: 2006 Apple Computer, Inc. 2008 Google Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/ThreadSpecific.h Copyright: 2008 Apple Inc. 2009 Jian Li License: BSD-3-clause Files: Source/JavaScriptCore/wtf/url/src/URLSegments.h Source/JavaScriptCore/wtf/TCPackedCache.h Source/ThirdParty/gtest/include/gtest/gtest-spi.h Source/ThirdParty/gtest/test/gtest_stress_test.cc Source/ThirdParty/gtest/test/gtest-tuple_test.cc Source/ThirdParty/gtest/test/gtest_nc_test.py Source/ThirdParty/gtest/test/gtest_environment_test.cc Source/ThirdParty/gtest/test/gtest_nc.cc Copyright: 2007, Google Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/CurrentTime.cpp Copyright: 2006, 2010 Apple Inc. 2008 Google Inc. 2007-2009 Torch Mobile, Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/efl/MainThreadEfl.cpp Copyright: 2007, 2008 Apple Inc. 2007 Justin Haygood 2008 Diego Gonzalez 2008 Kenneth Rohde Christiansen 2009-2010 ProFUSION embedded systems 2009-2010 Samsung Electronics License: BSD-3-clause Files: Source/JavaScriptCore/wtf/Deque.h Copyright: 2007, 2008 Apple Inc. 2009 Google Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/TCSystemAlloc.cpp Source/JavaScriptCore/wtf/TCSystemAlloc.h Copyright: 2005, 2007, Google Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/PageAllocatorSymbian.h Copyright: 2011 Nokia Corporation and/or its subsidiary(-ies) License: BSD-3-clause Files: Source/JavaScriptCore/wtf/ThreadingPthreads.cpp Copyright: 2007, 2009 Apple Inc. 2007 Justin Haygood License: BSD-3-clause Files: Source/JavaScriptCore/wtf/ThreadingNone.cpp Source/JavaScriptCore/wtf/qt/ThreadingQt.cpp Copyright: 2007 Apple Inc. 2007 Justin Haygood License: BSD-3-clause Files: Source/JavaScriptCore/wtf/TCPageMap.h Source/ThirdParty/gtest/include/gtest/gtest.h Source/ThirdParty/gtest/include/gtest/gtest-death-test.h Source/ThirdParty/gtest/include/gtest/gtest-message.h Source/ThirdParty/gtest/include/gtest/internal/gtest-port.h Source/ThirdParty/gtest/include/gtest/internal/gtest-death-test-internal.h Source/ThirdParty/gtest/include/gtest/internal/gtest-string.h Source/ThirdParty/gtest/include/gtest/internal/gtest-internal.h Source/ThirdParty/gtest/src/gtest-internal-inl.h Source/ThirdParty/gtest/src/gtest-death-test.cc Source/ThirdParty/gtest/src/gtest.cc Source/ThirdParty/gtest/samples/sample4_unittest.cc Source/ThirdParty/gtest/samples/sample2_unittest.cc Source/ThirdParty/gtest/samples/sample4.cc Source/ThirdParty/gtest/samples/sample3-inl.h Source/ThirdParty/gtest/samples/sample1.cc Source/ThirdParty/gtest/samples/sample1.h Source/ThirdParty/gtest/samples/sample4.h Source/ThirdParty/gtest/samples/sample3_unittest.cc Source/ThirdParty/gtest/samples/sample1_unittest.cc Source/ThirdParty/gtest/samples/sample2.cc Source/ThirdParty/gtest/samples/sample5_unittest.cc Source/ThirdParty/gtest/samples/sample2.h Source/ThirdParty/gtest/test/gtest-death-test_test.cc Source/ThirdParty/gtest/test/gtest-message_test.cc Source/ThirdParty/gtest/test/gtest_output_test_.cc Source/ThirdParty/gtest/test/gtest_filter_unittest_.cc Source/ThirdParty/gtest/test/gtest_unittest.cc Copyright: 2005, Google Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/FastAllocBase.h Copyright: 2008, 2009 Paul Pedriana . License: BSD-3-clause Files: Source/JavaScriptCore/wtf/MD5.cpp Copyright: 2006 Google Inc.2010 Google Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/qt/MainThreadQt.cpp Copyright: 2007 Staikos Computing Services Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Apple Inc. License: BSD-3-clause Files: Source/JavaScriptCore/wtf/TCSpinLock.h Copyright: 2005, 2006, Google Inc. 2010, Patrick Gansterer License: BSD-3-clause Files: Source/cmake/FindLibSoup2.cmake Copyright: 2007 Daniel Gollub 2008 Bjoern Ricks License: BSD-3-clause Files: Source/cmake/FindFontconfig.cmake Copyright: 2006,2007 Laurent Montel, License: BSD-3-clause Files: Source/cmake/FindLibXlst.cmake Copyright: 2006, Alexander Neundorf, License: BSD-3-clause Files: Source/cmake/FindSqlite.cmake Copyright: 2008, Gilles Caulier, License: BSD-3-clause Files: Source/ThirdParty/gtest/include/gtest/gtest_prod.h Source/ThirdParty/gtest/include/gtest/gtest_pred_impl.h Source/ThirdParty/gtest/src/gtest_main.cc Source/ThirdParty/gtest/test/gtest_main_unittest.cc Source/ThirdParty/gtest/test/gtest_pred_impl_unittest.cc Source/ThirdParty/gtest/test/gtest_xml_output_unittest_.cc Source/ThirdParty/gtest/test/production.cc Source/ThirdParty/gtest/test/gtest_xml_test_utils.py Source/ThirdParty/gtest/test/gtest_xml_output_unittest.py Source/ThirdParty/gtest/test/gtest_list_tests_unittest.py Source/ThirdParty/gtest/test/gtest_prod_test.cc Source/ThirdParty/gtest/test/gtest_test_utils.py Source/ThirdParty/gtest/test/gtest_break_on_failure_unittest.py Source/ThirdParty/gtest/test/production.h Source/ThirdParty/gtest/test/gtest_no_test_unittest.cc Source/ThirdParty/gtest/test/gtest_list_tests_unittest_.cc Source/ThirdParty/gtest/test/gtest_break_on_failure_unittest_.cc Copyright: 2006, Google Inc. License: BSD-3-clause Files: Source/ThirdParty/gtest/include/gtest/internal/gtest-linked_ptr.h Copyright: 2003 Google Inc. License: BSD-3-clause Files: Source/ThirdParty/gtest/scripts/gen_gtest_pred_impl.py Copyright: 2006, Google Inc. 2006, Google Inc. 2006, Google Inc. License: BSD-3-clause Files: Source/ThirdParty/gtest/test/gtest_filter_unittest.py Copyright: 2005 Google Inc. License: BSD-3-clause Files: Source/ThirdParty/gtest/test/gtest-linked_ptr_test.cc Copyright: 2003, Google Inc. License: BSD-3-clause Files: Source/ThirdParty/mt19937ar.c Copyright: 1997 - 2002, Makoto Matsumoto and Takuji Nishimura, License: BSD-3-clause Files: Source/WebKit/qt/WebCoreSupport/InspectorClientQt.h Copyright: 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-3-clause Files: Source/WebKit/qt/WebCoreSupport/WebSystemInterface.mm Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. License: BSD-3-clause Files: Source/WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.h Source/WebKit/qt/WebCoreSupport/GeolocationPermissionClientQt.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-3-clause Files: Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.cpp Source/WebKit/qt/WebCoreSupport/NotificationPresenterClientQt.h Copyright: 2009 Google Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-3-clause Files: Source/WebKit2/WebProcess/WebCoreSupport/mac/WebEditorClientMac.mm Copyright: 2006, 2010, 2011 Apple Computer, Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-3-clause Files: Source/WebCore/loader/FrameNetworkingContext.h Source/WebCore/platform/network/NetworkingContext.h Source/WebCore/platform/graphics/IntPointHash.h Source/WebCore/platform/graphics/texmap/TextureMapperNode.cpp Source/WebCore/platform/graphics/texmap/TextureMapper.h Source/WebCore/platform/graphics/texmap/TextureMapperNode.h Source/WebCore/platform/graphics/Tile.h Source/WebCore/platform/graphics/TiledBackingStore.h Source/WebCore/platform/graphics/opengl/TextureMapperGL.cpp Source/WebCore/platform/graphics/opengl/TextureMapperGL.h Source/WebCore/platform/graphics/gstreamer/ImageGStreamerQt.cpp Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowQt.cpp Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowPrivate.h Source/WebCore/platform/graphics/TiledBackingStoreClient.h Source/WebCore/platform/graphics/TiledBackingStore.cpp Source/WebCore/platform/graphics/qt/TileQt.cpp Source/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.h Source/WebCore/platform/graphics/qt/TextureMapperQt.h Source/WebCore/platform/graphics/qt/TextureMapperQt.cpp Source/WebCore/platform/graphics/qt/MediaPlayerPrivateQt.cpp Source/WebCore/platform/qt/PlatformBridgeQt.cpp Source/WebCore/platform/qt/QtMobileWebStyle.cpp Source/WebCore/platform/qt/QtMobileWebStyle.h Source/WebCore/css/MediaQueryList.cpp Source/WebCore/css/MediaQueryList.h Source/WebCore/css/MediaQueryMatcher.h Source/WebCore/css/MediaQueryListListener.idl Source/WebCore/css/MediaQueryList.idl Source/WebCore/css/MediaQueryListListener.cpp Source/WebCore/css/MediaQueryMatcher.cpp Source/WebCore/css/MediaQueryListListener.h Source/WebCore/html/HTMLDetailsElement.idl Source/WebKit/qt/Api/qwebkitplatformplugin.h Source/WebKit/qt/symbian/platformplugin/qwebkitplatformplugin.h Source/WebKit/qt/examples/platformplugin/WebPlugin.h Source/WebKit/qt/examples/platformplugin/WebPlugin.cpp Source/WebKit/qt/examples/platformplugin/qwebkitplatformplugin.h Source/WebKit/qt/WebCoreSupport/DeviceMotionClientQt.cpp Source/WebKit/qt/WebCoreSupport/DeviceMotionProviderQt.cpp Source/WebKit/qt/WebCoreSupport/InspectorServerQt.cpp Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.cpp Source/WebKit/qt/WebCoreSupport/DeviceOrientationProviderQt.cpp Source/WebKit/qt/WebCoreSupport/FrameNetworkingContextQt.h Source/WebKit/qt/WebCoreSupport/QtPlatformPlugin.h Source/WebKit/qt/WebCoreSupport/QtMaemoWebPopup.cpp Source/WebKit/qt/WebCoreSupport/DeviceMotionClientQt.h Source/WebKit/qt/WebCoreSupport/InspectorServerQt.h Source/WebKit/qt/WebCoreSupport/DeviceOrientationClientQt.h Source/WebKit/qt/WebCoreSupport/PageClientQt.h Source/WebKit/qt/WebCoreSupport/DeviceOrientationProviderQt.h Source/WebKit/qt/WebCoreSupport/QtMaemoWebPopup.h Source/WebKit/qt/WebCoreSupport/DeviceOrientationClientMockQt.cpp Source/WebKit/qt/WebCoreSupport/DeviceMotionProviderQt.h Source/WebKit/qt/WebCoreSupport/FrameNetworkingContextQt.cpp Source/WebKit/qt/WebCoreSupport/DeviceOrientationClientMockQt.h Source/WebKit/qt/WebCoreSupport/PageClientQt.cpp Source/WebKit/qt/WebCoreSupport/DeviceOrientationClientQt.cpp Source/WebKit2/UIProcess/API/cpp/qt/WKURLQt.cpp Source/WebKit2/UIProcess/API/cpp/qt/WKStringQt.cpp Source/WebKit2/UIProcess/API/cpp/qt/WKStringQt.h Source/WebKit2/UIProcess/API/cpp/qt/WKURLQt.h Source/WebKit2/UIProcess/API/qt/qwkpreferences.cpp Source/WebKit2/UIProcess/API/qt/qwkcontext.h Source/WebKit2/UIProcess/API/qt/qwkpage_p.h Source/WebKit2/UIProcess/API/qt/qwkcontext.cpp Source/WebKit2/UIProcess/API/qt/qwkcontext_p.h Source/WebKit2/UIProcess/API/qt/WKView.h Source/WebKit2/UIProcess/API/qt/ClientImpl.cpp Source/WebKit2/UIProcess/API/qt/qwkpreferences.h Source/WebKit2/UIProcess/API/qt/qgraphicswkview.cpp Source/WebKit2/UIProcess/API/qt/qwkpreferences_p.h Source/WebKit2/UIProcess/API/qt/qwkpage.cpp Source/WebKit2/WebProcess/WebCoreSupport/win/WebFrameNetworkingContext.h Source/WebKit2/WebProcess/WebCoreSupport/win/WebFrameNetworkingContext.cpp Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.h Source/WebKit2/WebProcess/WebCoreSupport/mac/WebFrameNetworkingContext.mm Source/WebKit2/WebProcess/WebCoreSupport/qt/WebFrameNetworkingContext.h Source/WebKit2/WebProcess/WebCoreSupport/qt/WebFrameNetworkingContext.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/html/HTMLImageElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/gobject/GOwnPtr.cpp Copyright: 2008 Collabora Ltd. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/gobject/GTypedefs.h Copyright: 2010 Igalia, S.L. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/gobject/GOwnPtr.h Copyright: 2006, 2007 Apple Inc. 2008 Collabora Ltd. License: LGPL-2+ Files: Source/WebCore/dom/Element.cpp Source/WebCore/html/FormAssociatedElement.h Source/WebCore/html/HTMLFormElement.h Source/WebCore/html/HTMLFormControlElement.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/ListHashSet.h Copyright: 2005, 2006, 2007, 2008 Apple Inc. 2011, Benjamin Poulain License: LGPL-2+ Files: debian/plugins/qwebview/qwebview_plugin.h debian/plugins/qwebview/qwebview_plugin.cpp Source/WebKit/qt/WebCoreSupport/FullScreenVideoQt.h Copyright: 2011 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/page/FrameTree.cpp Copyright: 2010. 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/page/PrintContext.h Source/WebCore/page/PrintContext.cpp Copyright: 2007 Alp Toker 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/page/SpatialNavigation.h Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies) 2009 Antonio Gomes License: LGPL-2+ Files: Source/WebCore/page/ChromeClient.h Copyright: 2006, 2007, 2008, 2009 Apple, Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/page/PageGroupLoadDeferrer.cpp Copyright: 2006, 2007, 2009 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/page/MouseEventWithHitTestResults.h Copyright: 2000 Simon Hausmann 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/page/Navigator.cpp Copyright: 2000 Harri Porten 2000 Daniel Molkentin 2000 Stefan Schimanski 2003, 2004, 2005, 2006 Apple Computer, Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/page/FrameTree.h Source/WebCore/page/MouseEventWithHitTestResults.cpp Source/WebCore/dom/UIEventWithKeyState.cpp Source/WebCore/dom/MutationEvent.idl Source/WebCore/dom/UIEvent.idl Source/WebCore/dom/Notation.idl Source/WebCore/dom/DocumentMarker.h Source/WebCore/dom/Entity.idl Source/WebCore/dom/Text.idl Source/WebCore/rendering/HitTestResult.h Source/WebCore/rendering/svg/RenderSVGBlock.h Source/WebCore/platform/text/mac/StringMac.mm Source/WebCore/platform/text/cf/StringCF.cpp Source/WebCore/platform/mac/LocalCurrentGraphicsContext.h Source/WebCore/platform/mac/LocalCurrentGraphicsContext.mm Source/WebCore/css/make-css-file-arrays.pl Source/WebCore/html/HTMLFieldSetElement.idl Source/WebCore/html/HTMLOptionsCollection.cpp Source/WebCore/html/HTMLTitleElement.idl Source/WebCore/xml/DOMParser.idl Source/WebCore/xml/XPathEvaluator.idl Source/WebCore/xml/XPathResult.idl Source/JavaScriptCore/wtf/StaticConstructors.h Source/JavaScriptCore/wtf/UnusedParam.h Source/JavaScriptCore/wtf/GetPtr.h Source/JavaScriptCore/wtf/text/AtomicStringImpl.h Copyright: 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/page/Frame.h Copyright: 1998, 1999 Torben Weis 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Eric Seidel License: LGPL-2+ Files: Source/WebCore/page/PageGroupLoadDeferrer.h Source/WebCore/rendering/RenderSlider.h Source/WebCore/platform/graphics/win/FontPlatformDataCGWin.cpp Source/JavaScriptCore/runtime/JSType.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/page/Navigator.idl Source/WebCore/page/Navigator.h Source/WebCore/bindings/js/JSDOMPluginCustom.cpp Source/WebCore/platform/network/qt/QNetworkReplyHandler.h Source/WebCore/platform/graphics/qt/FontCustomPlatformData.h Source/WebCore/platform/graphics/qt/FontCustomPlatformDataQt.cpp Source/WebCore/platform/qt/WheelEventQt.cpp Source/WebCore/platform/qt/EventLoopQt.cpp Source/WebCore/platform/qt/KURLQt.cpp Source/WebCore/platform/qt/LoggingQt.cpp Source/WebCore/css/makegrammar.pl Source/WebCore/plugins/DOMMimeType.h Source/WebCore/plugins/DOMPlugin.h Source/WebCore/plugins/PluginData.h Source/WebCore/plugins/DOMMimeType.cpp Source/WebCore/plugins/DOMPlugin.cpp Source/WebCore/bridge/qt/qt_instance.h Source/WebCore/bridge/qt/qt_class.cpp Source/WebCore/bridge/qt/qt_runtime.cpp Source/WebCore/bridge/qt/qt_class.h Source/WebCore/bridge/qt/qt_instance.cpp Source/WebCore/bridge/qt/qt_runtime.h Source/WebKit/qt/Api/qwebpluginfactory.h Source/WebKit/qt/Api/qwebsecurityorigin.h Source/WebKit/qt/Api/qwebkitglobal.h Source/WebKit/qt/Api/qwebhistory.h Source/WebKit/qt/Api/qwebhistory.cpp Source/WebKit/qt/Api/qwebsecurityorigin_p.h Source/WebKit/qt/Api/qwebdatabase_p.h Source/WebKit/qt/Api/qwebdatabase.cpp Source/WebKit/qt/Api/qwebsettings.cpp Source/WebKit/qt/Api/qwebdatabase.h Source/WebKit/qt/Api/qwebhistory_p.h Source/WebKit/qt/Api/qwebsettings.h Source/WebKit/qt/Api/qwebpluginfactory.cpp Source/WebKit/qt/Api/qwebsecurityorigin.cpp Source/WebKit/qt/tests/qwebelement/tst_qwebelement.cpp Source/WebKit/qt/tests/qwebinspector/tst_qwebinspector.cpp Source/WebKit2/UIProcess/API/qt/ClientImpl.h Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/page/Frame.cpp Copyright: 1998, 1999 Torben Weis 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2005 Alexey Proskuryakov 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Eric Seidel License: LGPL-2+ Files: Source/WebCore/page/FrameView.cpp Copyright: 1998, 1999 Torben Weis 2004, 2005, 2006, 2007, 2008 Apple Inc. 2009 Google Inc. License: LGPL-2+ Files: Source/WebCore/page/Page.h Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/page/Chrome.cpp Copyright: 2006, 2007, 2009 Apple Inc. 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/page/WindowFeatures.cpp Copyright: 2000 Harri Porten 2006 Jon Shier 2003, 2004, 2005, 2006, 2007, 2010 Apple Inc. All rights reseved. 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/page/Page.cpp Copyright: 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/page/FrameView.h Copyright: 1997 Martin Jones 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/page/Chrome.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/loader/TextResourceDecoder.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2005, 2006, 2007 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/loader/TextResourceDecoder.h Copyright: 1999 Lars Knoll 2006 Alexey Proskuryakov 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/ResourceLoadScheduler.h Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2004, 2006, 2007, 2008 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/loader/ResourceLoadScheduler.cpp Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2002 Waldo Bastian 2006 Samuel Weinig 2004, 2005, 2006, 2007, 2008 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/loader/FTPDirectoryParser.h Source/WebCore/loader/FTPDirectoryParser.cpp Copyright: 2002 Cyrus Patel License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedResourceRequest.h Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2004, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedXSLStyleSheet.cpp Source/WebCore/loader/cache/CachedResource.cpp Source/WebCore/loader/cache/CachedResourceRequest.cpp Source/WebCore/loader/cache/CachedScript.cpp Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2002 Waldo Bastian 2006 Samuel Weinig 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedImage.cpp Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2002 Waldo Bastian 2006 Samuel Weinig 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/MemoryCache.cpp Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2002 Waldo Bastian 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedXSLStyleSheet.h Source/WebCore/loader/cache/CachedScript.h Source/WebCore/loader/cache/CachedCSSStyleSheet.h Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2006 Samuel Weinig 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedResourceLoader.cpp Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2002 Waldo Bastian 2004, 2005, 2006, 2008 Apple Inc. 2009 Torch Mobile Inc. http://www.torchmobile.com/ License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedResourceClient.h Source/WebCore/loader/cache/MemoryCache.h Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedResourceClientWalker.h Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedCSSStyleSheet.cpp Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2002 Waldo Bastian 2006 Samuel Weinig 2004, 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedResourceLoader.h Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2004, 2005, 2006 Apple Computer, Inc. 2009 Torch Mobile Inc. http://www.torchmobile.com/ License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedResource.h Source/WebCore/loader/cache/CachedImage.h Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2006 Samuel Weinig 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/cache/CachedResourceClientWalker.cpp Copyright: 1998 Lars Knoll 2001 Dirk Mueller 2002 Waldo Bastian 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/ImageLoader.cpp Source/WebCore/dom/Attr.cpp Source/WebCore/dom/ContainerNode.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/loader/ImageLoader.h Copyright: 1999 Lars Knoll 2004, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/ScriptControllerBase.cpp Source/WebCore/bindings/js/ScriptController.cpp Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSCanvasRenderingContext2DCustom.cpp Source/WebCore/rendering/RenderFileUploadControl.h Source/WebCore/html/HTMLFrameOwnerElement.cpp Source/WebCore/html/HTMLFrameOwnerElement.h Copyright: 2006, 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSDocumentCustom.cpp Copyright: 2007, 2008, 2009, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSImageConstructor.cpp Copyright: 1999-2000 Harri Porten 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSNodeFilterCondition.cpp Source/WebCore/bindings/js/JSNodeFilterCondition.h Copyright: 2001 Peter Kelly 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSDOMWindowBase.h Copyright: 2000 Harri Porten 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reseved. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSLocationCustom.cpp Copyright: 2000 Harri Porten 2006 Jon Shier 2003, 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. All rights reseved. 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/bindings/js/JSHTMLSelectElementCustom.cpp Copyright: 2007, 2010 Apple Inc. 2007 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/bindings/js/JSDOMWindowCustom.h Copyright: 2008, 2009 Apple Inc. All rights reseved. License: LGPL-2+ Files: Source/WebCore/bindings/js/DOMObjectHashTableMap.h Source/WebCore/bindings/js/DOMWrapperWorld.h Source/WebCore/bindings/js/JSDOMBinding.h Source/WebCore/bindings/js/WebCoreJSClientData.h Copyright: 1999-2001 Harri Porten 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. 2007 Samuel Weinig 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSImageConstructor.h Source/WebCore/bindings/js/JSPluginElementFunctions.h Copyright: 1999 Harri Porten 2004, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSTreeWalkerCustom.cpp Source/WebCore/bindings/js/JSNodeIteratorCustom.cpp Source/WebCore/dom/EventListener.h Copyright: 2006, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSSVGPathSegCustom.cpp Source/WebCore/platform/graphics/qt/IconQt.cpp Source/WebCore/platform/qt/FileChooserQt.cpp Source/WebCore/svg/SVGRenderingIntent.h Source/WebCore/svg/GradientAttributes.h Source/WebCore/svg/PatternAttributes.h Source/WebCore/svg/RadialGradientAttributes.h Source/WebCore/svg/LinearGradientAttributes.h Source/WebCore/svg/SVGUnitTypes.h Copyright: 2006 Nikolas Zimmermann License: LGPL-2+ Files: Source/WebCore/bindings/js/JSDOMWindowCustom.cpp Source/WebCore/platform/graphics/win/FontCustomPlatformData.cpp Copyright: 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSHTMLCollectionCustom.cpp Source/WebCore/platform/graphics/win/FontCustomPlatformData.h Copyright: 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSOptionConstructor.h Source/WebCore/rendering/HitTestResult.cpp Source/WebCore/platform/graphics/IntSizeHash.h Source/WebCore/css/CSSPrimitiveValue.idl Source/JavaScriptCore/runtime/PropertyNameArray.h Source/JavaScriptCore/runtime/PropertyNameArray.cpp Copyright: 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/DOMObjectHashTableMap.cpp Source/WebCore/bindings/js/DOMWrapperWorld.cpp Copyright: 1999-2001 Harri Porten 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2007 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/bindings/js/JSNavigatorCustom.cpp Copyright: 2000 Harri Porten 2000 Daniel Molkentin 2000 Stefan Schimanski 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/bindings/js/JSLazyEventListener.h Source/WebCore/bindings/js/JSEventListener.h Copyright: 2001 Peter Kelly 2003, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSDOMPluginArrayCustom.cpp Source/WebCore/bindings/js/JSDOMMimeTypeArrayCustom.cpp Source/WebCore/plugins/DOMMimeTypeArray.cpp Source/WebCore/plugins/DOMPlugin.idl Source/WebCore/plugins/DOMMimeType.idl Source/WebCore/plugins/DOMPluginArray.cpp Source/WebCore/plugins/DOMPluginArray.idl Source/WebCore/plugins/DOMPluginArray.h Source/WebCore/plugins/DOMMimeTypeArray.h Source/WebCore/plugins/DOMMimeTypeArray.idl Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSDOMBinding.cpp Copyright: 1999-2001 Harri Porten 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2007 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/bindings/js/JSOptionConstructor.cpp Source/WebCore/bindings/js/JSHTMLOptionsCollectionCustom.cpp Source/WebCore/dom/DocumentFragment.idl Source/WebCore/platform/graphics/Icon.h Source/WebCore/platform/graphics/mac/IconMac.mm Source/JavaScriptCore/wtf/VectorTraits.h Copyright: 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSEventListener.cpp Source/WebCore/bindings/js/JSLazyEventListener.cpp Copyright: 2001 Peter Kelly 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/ScheduledAction.cpp Copyright: 2000 Harri Porten 2006 Jon Shier 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reseved. 2006 Alexey Proskuryakov 2009 Google Inc. All rights reseved. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSDOMWindowBase.cpp Copyright: 2000 Harri Porten 2006 Jon Shier 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reseved. 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/bindings/js/JSPluginElementFunctions.cpp Source/WebCore/bridge/testbindings.cpp Source/JavaScriptCore/runtime/DateConstructor.cpp Source/JavaScriptCore/runtime/DateInstance.cpp Copyright: 1999-2000 Harri Porten 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/JSSVGLengthCustom.cpp Source/WebCore/dom/ScriptElement.h Source/WebCore/svg/SVGFontData.h Source/WebCore/svg/SVGFontData.cpp Copyright: 2008 Nikolas Zimmermann License: LGPL-2+ Files: Source/WebCore/bindings/js/JSDOMWrapper.h Copyright: 1999-2001 Harri Porten 2003, 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. 2007 Samuel Weinig 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/bindings/js/ScriptController.h Copyright: 1999 Harri Porten 2001 Peter Kelly 2008 Apple Inc. 2008 Eric Seidel License: LGPL-2+ Files: Source/WebCore/bindings/js/ScheduledAction.h Copyright: 2000 Harri Porten 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reseved. License: LGPL-2+ Files: Source/WebCore/bindings/gobject/GObjectEventListener.cpp Source/WebCore/bindings/gobject/GObjectEventListener.h Copyright: 2010, 2011 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/bindings/gobject/WebKitDOMObject.h Copyright: 2008 Luke Kenneth Casson Leighton 2008 Martin Soto 2008 Alp Toker 2008 Apple Inc. 2009 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/bindings/gobject/WebKitDOMBinding.cpp Copyright: 1999-2001 Harri Porten 2004, 2005, 2006, 2007, 2008 Apple Inc. 2007 Samuel Weinig 2008 Luke Kenneth Casson Leighton 2008 Martin Soto 2009, 2010 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/bindings/gobject/DOMObjectCache.h Source/WebCore/bindings/gobject/DOMObjectCache.cpp Source/WebCore/bindings/gobject/WebKitDOMEventTargetPrivate.h Source/WebCore/bindings/gobject/WebKitDOMEventTarget.h Copyright: 2010 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/bindings/gobject/ConvertToUTF8String.cpp Source/WebCore/bindings/gobject/ConvertToUTF8String.h Copyright: 2008 Luke Kenneth Casson Leighton 2010 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/bindings/gobject/WebKitDOMBinding.h Copyright: 1999-2001 Harri Porten 2003, 2004, 2005, 2006, 2008 Apple Inc. 2007 Samuel Weinig 2008 Luke Kenneth Casson Leighton 2008 Martin Soto 2009-2010 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/bindings/cpp/WebDOMString.cpp Source/WebCore/bindings/cpp/WebDOMString.h Source/WebCore/bindings/cpp/WebDOMCString.h Source/WebCore/bindings/cpp/WebDOMCString.cpp Copyright: 2010. 2009 Google Inc. License: LGPL-2+ Files: Source/WebCore/bindings/cpp/WebDOMHTMLOptionsCollectionCustom.cpp Source/WebCore/bindings/cpp/WebDOMEventListenerCustom.cpp Source/WebCore/bindings/cpp/WebDOMEventTarget.h Source/WebCore/bindings/cpp/WebDOMHTMLDocumentCustom.cpp Source/WebCore/bindings/cpp/WebExceptionHandler.cpp Source/WebCore/bindings/cpp/WebNativeNodeFilterCondition.cpp Source/WebCore/bindings/cpp/WebDOMHTMLCollectionCustom.cpp Source/WebCore/bindings/cpp/WebNativeEventListener.cpp Source/WebCore/bindings/cpp/WebDOMNodeCustom.cpp Source/WebCore/bindings/cpp/WebDOMDOMWindowCustom.cpp Source/WebCore/bindings/cpp/WebDOMObject.h Source/WebCore/rendering/svg/SVGTextFragment.h Source/WebCore/rendering/svg/SVGTextLayoutAttributes.h Source/WebCore/rendering/svg/SVGImageBufferTools.h Source/WebCore/rendering/svg/RenderSVGResourceContainer.cpp Source/WebCore/rendering/svg/SVGShadowTreeElements.cpp Source/WebCore/rendering/svg/SVGTextQuery.h Source/WebCore/rendering/svg/SVGTextChunkBuilder.cpp Source/WebCore/rendering/svg/SVGTextChunk.h Source/WebCore/rendering/svg/SVGResources.cpp Source/WebCore/rendering/svg/SVGTextLayoutEngine.h Source/WebCore/rendering/svg/SVGMarkerData.h Source/WebCore/rendering/svg/RenderSVGResourceSolidColor.cpp Source/WebCore/rendering/svg/SVGTextMetrics.h Source/WebCore/rendering/svg/SVGTextLayoutEngineBaseline.cpp Source/WebCore/rendering/svg/SVGTextLayoutEngineSpacing.cpp Source/WebCore/rendering/svg/SVGMarkerLayoutInfo.h Source/WebCore/rendering/svg/SVGTextChunkBuilder.h Source/WebCore/rendering/svg/SVGTextQuery.cpp Source/WebCore/rendering/svg/SVGTextLayoutEngineSpacing.h Source/WebCore/rendering/svg/SVGShadowTreeElements.h Source/WebCore/rendering/svg/SVGResourcesCycleSolver.h Source/WebCore/rendering/svg/RenderSVGShadowTreeRootContainer.h Source/WebCore/rendering/svg/SVGImageBufferTools.cpp Source/WebCore/rendering/svg/RenderSVGShadowTreeRootContainer.cpp Source/WebCore/rendering/svg/SVGTextLayoutEngine.cpp Source/WebCore/rendering/svg/SVGResourcesCache.h Source/WebCore/rendering/svg/SVGTextChunk.cpp Source/WebCore/rendering/svg/SVGResourcesCache.cpp Source/WebCore/rendering/svg/SVGResources.h Source/WebCore/rendering/svg/SVGTextLayoutAttributes.cpp Source/WebCore/rendering/svg/SVGResourcesCycleSolver.cpp Source/WebCore/rendering/svg/RenderSVGResourceSolidColor.h Source/WebCore/rendering/svg/RenderSVGResourceContainer.h Source/WebCore/rendering/svg/SVGTextLayoutEngineBaseline.h Source/WebCore/rendering/svg/SVGTextMetrics.cpp Source/WebCore/svg/SVGPathParserFactory.h Source/WebCore/svg/SVGPathSegListSource.cpp Source/WebCore/svg/SVGPathByteStreamSource.cpp Source/WebCore/svg/SVGRect.h Source/WebCore/svg/SVGAnimatedAngle.h Source/WebCore/svg/SVGAnimatedLengthList.h Source/WebCore/svg/SVGPathSegWithContext.h Source/WebCore/svg/SVGPathByteStream.h Source/WebCore/svg/SVGAnimatedInteger.h Source/WebCore/svg/SVGPathParserFactory.cpp Source/WebCore/svg/SVGAnimatedNumberList.h Source/WebCore/svg/SVGAnimatedNumber.h Source/WebCore/svg/SVGPathStringBuilder.cpp Source/WebCore/svg/SVGAnimatedPreserveAspectRatio.h Source/WebCore/svg/SVGPathStringSource.h Source/WebCore/svg/SVGAnimatedBoolean.h Source/WebCore/svg/SVGVKernElement.idl Source/WebCore/svg/SVGAnimatedRect.h Source/WebCore/svg/SVGMatrix.h Source/WebCore/svg/SVGAnimatedTransformList.h Source/WebCore/svg/SVGVKernElement.cpp Source/WebCore/svg/SVGAnimatedEnumeration.h Source/WebCore/svg/SVGElementRareData.h Source/WebCore/svg/SVGPathSegListSource.h Source/WebCore/svg/SVGPathByteStreamBuilder.h Source/WebCore/svg/SVGVKernElement.h Source/WebCore/svg/SVGAnimatedLength.h Source/WebCore/svg/SVGPathBlender.h Source/WebCore/svg/SVGPathSource.h Source/WebCore/svg/SVGPathStringSource.cpp Source/WebCore/svg/SVGPathStringBuilder.h Source/WebCore/svg/SVGAnimatedString.h Source/WebCore/svg/SVGPathByteStreamBuilder.cpp Source/WebCore/svg/SVGPathByteStreamSource.h Source/WebCore/svg/properties/SVGPathSegListPropertyTearOff.h Source/WebCore/svg/properties/SVGAnimatedListPropertyTearOff.h Source/WebCore/svg/properties/SVGAnimatedPropertyTearOff.h Source/WebCore/svg/properties/SVGAnimatedStaticPropertyTearOff.h Source/WebCore/svg/properties/SVGStaticPropertyTearOff.h Source/WebCore/svg/properties/SVGListProperty.h Source/WebCore/svg/properties/SVGAnimatedTransformListPropertyTearOff.h Source/WebCore/svg/properties/SVGPropertyTearOff.h Source/WebCore/svg/properties/SVGStaticListPropertyTearOff.h Source/WebCore/svg/properties/SVGListPropertyTearOff.h Source/WebCore/svg/properties/SVGStaticPropertyWithParentTearOff.h Source/WebCore/svg/properties/SVGAnimatedPathSegListPropertyTearOff.h Source/WebCore/svg/properties/SVGAnimatedProperty.h Source/WebCore/svg/properties/SVGProperty.h Source/WebCore/svg/properties/SVGPathSegListPropertyTearOff.cpp Source/WebCore/svg/properties/SVGAnimatedPropertySynchronizer.h Source/WebCore/svg/properties/SVGTransformListPropertyTearOff.h Copyright: 2010. License: LGPL-2+ Files: Source/WebCore/bindings/cpp/WebDOMEventTarget.cpp Copyright: 2010. 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/cpp/WebExceptionHandler.h Copyright: 2010. 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/cpp/WebNativeNodeFilterCondition.h Source/WebCore/bindings/cpp/WebNativeEventListener.h Copyright: 2010. 2001 Peter Kelly 2003, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/bindings/scripts/CodeGenerator.pm Copyright: 2005 Nikolas Zimmermann 2006 Samuel Weinig 2007, 2008, 2009, 2010 Apple Inc. 2009 Cameron McCormack 2010. License: LGPL-2+ Files: Source/WebCore/bindings/scripts/generate-bindings.pl Copyright: 2005 Apple Computer, Inc. 2006 Anders Carlsson License: LGPL-2+ Files: Source/WebCore/bindings/scripts/IDLStructure.pm Source/WebCore/bindings/scripts/IDLParser.pm Copyright: 2005 Nikolas Zimmermann License: LGPL-2+ Files: Source/WebCore/bindings/scripts/gobject-generate-headers.pl Copyright: 2009 Adam Dingle License: LGPL-2+ Files: Source/WebCore/bindings/scripts/CodeGeneratorObjC.pm Copyright: 2005, 2006 Nikolas Zimmermann 2006 Anders Carlsson 2006, 2007 Samuel Weinig 2006 Alexey Proskuryakov 2006, 2007, 2008, 2009, 2010 Apple Inc. 2009 Cameron McCormack 2010 Google Inc. 2010. 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/bindings/scripts/test/CPP/WebDOMTestObj.h Source/WebCore/bindings/scripts/test/CPP/WebDOMTestMediaQueryListListener.h Source/WebCore/bindings/scripts/test/CPP/WebDOMTestInterface.h Source/WebCore/bindings/scripts/test/CPP/WebDOMTestCallback.h Source/WebCore/bindings/scripts/test/CPP/WebDOMTestSerializedScriptValueInterface.h Copyright: 2010. 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2006 Samuel Weinig 2010. License: LGPL-2+ Files: Source/WebCore/bindings/scripts/CodeGeneratorJS.pm Copyright: 2005, 2006, 2007, 2008 Nikolas Zimmermann 2006 Anders Carlsson 2006, 2007 Samuel Weinig 2006 Alexey Proskuryakov 2006, 2007, 2008, 2009, 2010 Apple Inc. 2009 Cameron McCormack 2010. 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/bindings/scripts/CodeGeneratorCPP.pm Copyright: 2005, 2006 Nikolas Zimmermann 2006 Anders Carlsson 2006, 2007 Samuel Weinig 2006 Alexey Proskuryakov 2006, 2007, 2008, 2009 Apple Inc. 2009 Cameron McCormack 2010. 2010. 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2006 Samuel Weinig 2010. License: LGPL-2+ Files: Source/WebCore/bindings/scripts/CodeGeneratorGObject.pm Copyright: 2008 Luke Kenneth Casson Leighton 2008 Martin Soto 2008 Alp Toker 2009 Adam Dingle 2009 Jim Nelson 2009, 2010 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/bindings/scripts/CodeGeneratorV8.pm Copyright: 2005, 2006 Nikolas Zimmermann 2006 Anders Carlsson 2006 Samuel Weinig 2006 Alexey Proskuryakov 2006 Apple Computer, Inc. 2007, 2008, 2009 Google Inc. 2009 Cameron McCormack 2010. 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/dom/DynamicNodeList.cpp Copyright: 1999 Lars Knoll 2004, 2006, 2007, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/XMLDocumentParser.cpp Copyright: 2000 Peter Kelly 2005, 2006, 2008 Apple Inc. 2006 Alexey Proskuryakov 2007 Samuel Weinig 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/MutationEvent.cpp Source/WebCore/dom/MouseEvent.cpp Source/WebCore/dom/RegisteredEventListener.cpp Source/WebCore/dom/MouseRelatedEvent.cpp Source/WebCore/dom/UIEvent.cpp Source/WebCore/dom/ClipboardEvent.cpp Source/WebCore/dom/Event.cpp Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Attribute.h Source/WebCore/dom/CSSMappedAttributeDeclaration.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/DocumentParser.h Copyright: 2000 Peter Kelly 2005, 2006 Apple Computer, Inc. 2007 Samuel Weinig 2010 Google, Inc. License: LGPL-2+ Files: Source/WebCore/dom/DocumentMarkerController.cpp Source/WebCore/dom/DocumentMarkerController.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2010. License: LGPL-2+ Files: Source/WebCore/dom/RegisteredEventListener.h Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/NodeIterator.h Source/WebCore/dom/TreeWalker.h Source/WebCore/dom/Traversal.cpp Source/WebCore/dom/NodeIterator.cpp Source/WebCore/dom/NodeFilterCondition.cpp Source/WebCore/dom/Traversal.h Source/WebCore/dom/NodeFilter.cpp Source/WebCore/dom/TreeWalker.cpp Copyright: 1999 Lars Knoll 2000 Frederik Holljen 2001 Peter Kelly 2006 Samuel Weinig 2004, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/OptionGroupElement.h Source/WebCore/dom/OptionElement.h Source/WebCore/dom/OptionElement.cpp Source/WebCore/dom/SelectElement.cpp Source/WebCore/dom/OptionGroupElement.cpp Copyright: 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/EventNames.cpp Source/WebCore/rendering/break_lines.h Source/WebCore/rendering/RenderButton.cpp Source/WebCore/css/MediaFeatureNames.h Source/WebCore/css/MediaFeatureNames.cpp Copyright: 2005 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/dom/ProcessingInstruction.idl Source/WebCore/dom/Range.idl Source/WebCore/dom/TreeWalker.idl Source/WebCore/dom/KeyboardEvent.idl Source/WebCore/dom/EventListener.idl Source/WebCore/css/CSSUnknownRule.idl Source/WebCore/xml/XPathExpression.idl Source/WebCore/xml/XPathNSResolver.idl Copyright: 2006 Apple Computer, Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/StyledElement.h Source/WebCore/rendering/RenderBlock.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Attribute.cpp Source/WebCore/html/HTMLFormControlElement.cpp Source/WebCore/html/FormAssociatedElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/RangeException.idl Source/WebCore/dom/DocumentType.idl Source/WebCore/dom/CharacterData.idl Source/WebCore/dom/MouseEvent.idl Source/WebCore/dom/ExceptionCode.h Source/WebCore/rendering/RenderTextControl.h Source/WebCore/rendering/RenderTextControl.cpp Source/WebCore/rendering/RenderTextControlMultiLine.cpp Source/WebCore/rendering/RenderFileUploadControl.cpp Source/WebCore/css/Rect.idl Source/WebCore/css/Counter.idl Copyright: 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/SpaceSplitString.cpp Copyright: 2007 David Smith 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Event.idl Source/WebCore/dom/Element.idl Source/WebCore/css/CSSValue.idl Source/WebCore/css/StyleSheetList.idl Source/WebCore/css/CSSStyleDeclaration.idl Source/WebCore/css/CSSRule.idl Source/WebCore/html/HTMLElement.idl Source/WebCore/html/HTMLCollection.idl Copyright: 2006, 2007, 2009 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/Attr.h Source/WebCore/dom/Text.cpp Source/WebCore/dom/Text.h Source/WebCore/dom/CharacterData.cpp Source/WebCore/rendering/RenderInline.cpp Source/WebCore/rendering/RenderInline.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/StyledElement.cpp Source/WebCore/html/HTMLParamElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Document.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2008, 2009 Google Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/dom/Element.h Source/WebCore/css/CSSStyleSelector.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Event.h Source/WebCore/dom/ClipboardEvent.h Source/WebCore/dom/KeyboardEvent.h Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/StyleElement.cpp Copyright: 2006, 2007 Rob Buis 2008 Apple, Inc. License: LGPL-2+ Files: Source/WebCore/dom/NamedNodeMap.cpp Source/WebCore/dom/ContainerNode.cpp Source/WebCore/rendering/RenderView.cpp Source/WebCore/html/HTMLFormElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/NodeRenderStyle.h Source/WebCore/platform/LinkHash.cpp Source/WebCore/html/HTMLOptionsCollection.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/NodeFilter.idl Source/WebCore/css/CSSStyleSheet.idl Source/WebCore/html/HTMLDocument.idl Source/JavaScriptCore/config.h Copyright: 2006, 2007, 2008 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/BeforeUnloadEvent.h Source/WebCore/dom/MouseRelatedEvent.h Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2004, 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/dom/ChildNodeList.h Source/WebCore/dom/NameNodeList.cpp Copyright: 1999 Lars Knoll 2004, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/CheckedRadioButtons.h Source/WebCore/dom/CheckedRadioButtons.cpp Source/JavaScriptCore/create_hash_table Copyright: 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/DynamicNodeList.h Source/WebCore/dom/NodeList.h Copyright: 1999 Lars Knoll 2004, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/ViewportArguments.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/dom/DocumentFragment.cpp Source/WebCore/dom/DocumentFragment.h Source/WebCore/rendering/RenderPart.cpp Source/WebCore/rendering/RenderFrame.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/EditingText.cpp Source/WebCore/dom/EditingText.h Copyright: 2003, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/NodeList.idl Copyright: 2006 Samuel Weinig 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/UIEvent.h Source/WebCore/dom/MutationEvent.h Source/WebCore/dom/UIEventWithKeyState.h Source/WebCore/dom/MouseEvent.h Source/WebCore/dom/Clipboard.h Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2004, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/DocumentType.h Source/WebCore/dom/DocumentType.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/ProcessingInstruction.h Copyright: 2000 Peter Kelly 2006 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Document.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/dom/XMLDocumentParserQt.cpp Copyright: 2000 Peter Kelly 2005, 2006, 2008 Apple Inc. 2006 Alexey Proskuryakov 2007 Samuel Weinig 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/EntityReference.cpp Source/WebCore/dom/ProcessingInstruction.cpp Copyright: 2000 Peter Kelly 2006, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/EventNames.h Copyright: 2005, 2007 Apple Inc. 2006 Jon Shier License: LGPL-2+ Files: Source/WebCore/dom/XMLDocumentParser.h Copyright: 2000 Peter Kelly 2005, 2006, 2007 Apple Inc. 2007 Samuel Weinig 2008 Nokia Corporation and/or its subsidiary(-ies) 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/DOMImplementation.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/KeyboardEvent.cpp Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Notation.cpp Source/WebCore/dom/Notation.h Copyright: 2000 Peter Kelly 2006, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/InputElement.h Source/WebCore/dom/InputElement.cpp Source/WebCore/platform/network/FormDataBuilder.h Copyright: 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/WheelEvent.cpp Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2005, 2006, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/NodeRareData.h Copyright: 2008, 2010 Apple Inc. 2008 David Smith License: LGPL-2+ Files: Source/WebCore/dom/ElementRareData.h Copyright: 2008, 2009, 2010 Apple Inc. 2008 David Smith License: LGPL-2+ Files: Source/WebCore/dom/HashChangeEvent.idl Source/WebCore/dom/HashChangeEvent.h Source/JavaScriptCore/wtf/Bitmap.h Source/WebKit2/WebProcess/WebPage/WebContextMenu.h Copyright: 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/QualifiedName.cpp Source/WebCore/dom/QualifiedName.h Copyright: 2005, 2006, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/TagNodeList.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/dom/ScriptElement.cpp Source/WebCore/html/HTMLScriptElement.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. 2008 Nikolas Zimmermann License: LGPL-2+ Files: Source/WebCore/dom/Node.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/XMLDocumentParserLibxml2.cpp Copyright: 2000 Peter Kelly 2005, 2006, 2008 Apple Inc. 2006 Alexey Proskuryakov 2007 Samuel Weinig 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2010 Patrick Gansterer License: LGPL-2+ Files: Source/WebCore/dom/NodeFilterCondition.h Source/WebCore/dom/NodeFilter.h Copyright: 1999 Lars Knoll 2000 Frederik Holljen 2001 Peter Kelly 2006 Samuel Weinig 2004, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Comment.h Source/WebCore/dom/Comment.cpp Source/WebCore/dom/CDATASection.h Copyright: 1999 Lars Knoll 2003, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/WheelEvent.idl Source/WebCore/html/HTMLTableSectionElement.idl Source/WebCore/html/HTMLTableCaptionElement.idl Source/WebCore/html/HTMLFrameElement.idl Source/WebCore/html/HTMLEmbedElement.idl Source/WebCore/html/HTMLTableCellElement.idl Source/WebCore/html/HTMLTableElement.idl Source/WebCore/html/HTMLTableColElement.idl Copyright: 2006, 2007, 2010 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/Entity.h Source/WebCore/dom/EntityReference.h Copyright: 2000 Peter Kelly 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Node.idl Source/WebCore/dom/Attr.idl Source/WebCore/css/StyleSheet.idl Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/StyleElement.h Copyright: 2006, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/dom/NamedNodeMap.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/MappedAttributeEntry.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006 Apple Computer, Inc. 2010 François Sausset . License: LGPL-2+ Files: Source/WebCore/dom/SpaceSplitString.h Source/WebCore/platform/graphics/mac/FontCustomPlatformData.cpp Copyright: 2007, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Range.h Source/WebCore/dom/Range.cpp Source/WebCore/rendering/RenderText.h Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/ViewportArguments.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/dom/CDATASection.idl Source/WebCore/dom/EntityReference.idl Source/WebCore/dom/Comment.idl Copyright: 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/EventDispatcher.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2011 Google Inc. License: LGPL-2+ Files: Source/WebCore/dom/DOMImplementation.idl Source/WebCore/dom/EventTarget.idl Source/WebCore/css/CSSMediaRule.idl Source/WebCore/css/CSSPageRule.idl Source/WebCore/css/CSSFontFaceRule.idl Source/WebCore/css/CSSCharsetRule.idl Source/WebCore/css/CSSStyleRule.idl Source/WebCore/css/CSSImportRule.idl Source/WebCore/html/HTMLOptionsCollection.idl Copyright: 2006, 2007 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/WheelEvent.h Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2004, 2005, 2006, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/CDATASection.cpp Copyright: 1999 Lars Knoll 2003, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/DOMImplementation.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008 Apple Inc. 2006 Samuel Weinig 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/TagNodeList.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/dom/EventDispatcher.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2011 Google Inc. License: LGPL-2+ Files: Source/WebCore/dom/NodeIterator.idl Source/WebCore/css/RGBColor.idl Copyright: 2006, 2008 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/ContainerNodeAlgorithms.h Source/WebCore/platform/text/TextBreakIteratorInternalICU.h Source/WebCore/platform/text/win/TextBreakIteratorInternalICUWin.cpp Source/JavaScriptCore/parser/NodeInfo.h Copyright: 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Node.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/TransformSource.h Source/WebCore/dom/TransformSourceQt.cpp Source/WebCore/xml/XSLStyleSheetQt.cpp Source/WebCore/xml/XSLTProcessorQt.cpp Source/WebKit/qt/Api/qwebplugindatabase_p.h Source/WebKit/qt/Api/qwebplugindatabase.cpp Source/WebKit/qt/tests/qwebplugindatabase/tst_qwebplugindatabase.cpp Source/WebKit/qt/tests/qgraphicswebview/tst_qgraphicswebview.cpp Copyright: 2009 Jakub Wieczorek License: LGPL-2+ Files: Source/WebCore/dom/RangeException.h Source/WebCore/css/FontValue.cpp Source/WebCore/css/Pair.h Source/WebCore/css/CSSInitialValue.cpp Source/WebCore/css/CSSProperty.h Source/WebCore/css/CSSProperty.cpp Source/WebCore/css/CSSInheritedValue.cpp Copyright: 2004, 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/dom/CSSMappedAttributeDeclaration.cpp Source/WebCore/rendering/RenderFieldset.cpp Source/WebCore/rendering/RenderFrameSet.cpp Source/WebCore/html/HTMLPlugInElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/dom/SelectElement.h Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies). 2009 Torch Mobile Inc. (http//www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/dom/BeforeUnloadEvent.cpp Copyright: 2001 Peter Kelly 2001 Tobias Anton 2006 Samuel Weinig 2003, 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/dom/ChildNodeList.cpp Copyright: 1999 Lars Knoll 2004, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/NamedNodeMap.idl Copyright: 2006 Samuel Weinig 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/Document.idl Copyright: 2006, 2007, 2011 Apple Inc. 2006, 2007 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/dom/CharacterData.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/dom/NameNodeList.h Copyright: 1999 Lars Knoll 2004, 2007m 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderWidget.cpp Copyright: 1999 Lars Knoll 2000 Dirk Mueller 2004, 2006, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTheme.cpp Source/WebCore/rendering/RenderThemeMac.h Source/WebCore/rendering/RenderTheme.h Copyright: 2005, 2006, 2007, 2008, 2009, 2010 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTable.h Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTextFragment.cpp Source/WebCore/rendering/RenderTextFragment.h Source/WebCore/WebCorePrefix.h Copyright: 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderArena.cpp Copyright: 2003 Apple Computer, Inc. 2010. 1998 Netscape Communications Corporation. License: LGPL-2+ Files: Source/WebCore/rendering/AutoTableLayout.h Source/WebCore/rendering/FixedTableLayout.h Source/WebCore/rendering/TableLayout.h Copyright: 2002 Lars Knoll License: LGPL-2+ Files: Source/WebCore/rendering/AutoTableLayout.cpp Copyright: 2002 Lars Knoll 2003, 2006, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderBR.h Copyright: 2000 Lars Knoll License: LGPL-2+ Files: Source/WebCore/rendering/RenderView.h Copyright: 1999 Lars Knoll 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RootInlineBox.cpp Source/WebCore/xml/DOMParser.cpp Source/JavaScriptCore/runtime/ScopeChain.cpp Copyright: 2003, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeWinCE.cpp Copyright: 2006, 2007 Apple Computer, Inc. 2007-2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderImageResourceStyleImage.h Source/WebCore/rendering/RenderImageResource.h Copyright: 1999 Lars Knoll 1999 Antti Koivisto 2006 Allan Sandfeld Jensen 2006 Samuel Weinig 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. 2010 Patrick Gansterer License: LGPL-2+ Files: Source/WebCore/rendering/PaintInfo.h Source/WebCore/rendering/PaintPhase.h Source/WebCore/rendering/RenderObject.h Copyright: 2000 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2009 Google Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderImageResource.cpp Source/WebCore/rendering/RenderImageResourceStyleImage.cpp Copyright: 1999 Lars Knoll 1999 Antti Koivisto 2000 Dirk Mueller 2006 Allan Sandfeld Jensen 2006 Samuel Weinig 2003, 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. 2010 Google Inc. 2010 Patrick Gansterer License: LGPL-2+ Files: Source/WebCore/rendering/RenderMarquee.h Source/WebCore/rendering/RenderArena.h Copyright: 2003 Apple Computer, Inc. 1998 Netscape Communications Corporation. License: LGPL-2+ Files: Source/WebCore/rendering/RenderLayer.h Source/WebCore/rendering/ScrollBehavior.h Copyright: 2003, 2009 Apple Inc. 1998 Netscape Communications Corporation. License: LGPL-2+ Files: Source/WebCore/rendering/RenderWidget.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/InlineTextBox.h Copyright: 2004, 2005, 2006, 2009, 2010, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTableCol.h Source/WebCore/rendering/RenderTableCol.cpp Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2009 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/rendering/RenderBlock.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2010. License: LGPL-2+ Files: Source/WebCore/rendering/RenderReplaced.cpp Copyright: 1999 Lars Knoll 2000 Dirk Mueller 2004, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderFrameSet.h Source/WebCore/platform/LengthBox.h Source/WebCore/platform/LengthSize.h Copyright: 1999 Lars Knoll 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderListMarker.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. 2006 Andrew Wellington 2010 Daniel Bates License: LGPL-2+ Files: Source/WebCore/rendering/RenderProgress.h Source/WebCore/rendering/RenderMeter.h Source/WebCore/platform/qt/RenderThemeQt.h Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeSafari.h Copyright: 2007, 2008 Apple Inc. 2009 Kenneth Rohde Christiansen License: LGPL-2+ Files: Source/WebCore/rendering/RenderDetailsMarker.cpp Source/WebCore/rendering/RenderDetails.h Source/WebCore/rendering/RenderSummary.h Source/WebCore/rendering/RenderDetails.cpp Source/WebCore/rendering/RenderSummary.cpp Source/WebCore/rendering/RenderDetailsMarker.h Source/WebCore/html/HTMLDetailsElement.h Source/WebCore/html/HTMLDetailsElement.cpp Copyright: 2010, 2011 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/rendering/RenderListItem.h Source/WebCore/rendering/RenderListMarker.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderMenuList.cpp Source/WebCore/rendering/RenderMenuList.h Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies). 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTableSection.cpp Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeChromiumWin.h Copyright: 2006 Apple Computer, Inc. 2008, 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/InlineTextBox.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderMarquee.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 1998 Netscape Communications Corporation. License: LGPL-2+ Files: Source/WebCore/rendering/PointerEventsHitRules.h Source/WebCore/rendering/PointerEventsHitRules.cpp Source/WebCore/svg/SVGViewSpec.h Copyright: 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/rendering/RenderTextControlMultiLine.h Copyright: 2008 Torch Mobile Inc. (http://www.torchmobile.com/) 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/InlineFlowBox.h Source/WebCore/rendering/InlineBox.cpp Copyright: 2003, 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/GapRects.h Copyright: 2005, 2006 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderCombineText.cpp Source/WebCore/rendering/RenderCombineText.h Source/JavaScriptCore/runtime/StringRecursionChecker.h Source/JavaScriptCore/runtime/StringRecursionChecker.cpp Copyright: 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderReplaced.h Source/WebCore/html/HTMLElement.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderBox.cpp Copyright: 1999 Lars Knoll 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeWinCE.h Copyright: 2006, 2008 Apple Computer, Inc. 2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/EllipsisBox.h Source/WebCore/rendering/EllipsisBox.cpp Source/WebCore/xml/DOMParser.h Copyright: 2003, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderBlockLineLayout.cpp Copyright: 2000 Lars Knoll 2003, 2004, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All right reserved. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/rendering/CounterNode.h Source/WebCore/rendering/CounterNode.cpp Copyright: 2005 Allan Sandfeld Jensen 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderImage.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderApplet.h Copyright: 1999 Lars Knoll 2006, 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderLayer.cpp Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. 1998 Netscape Communications Corporation. License: LGPL-2+ Files: Source/WebCore/rendering/RenderBR.cpp Copyright: 2000 Lars Knoll 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderProgress.cpp Source/WebCore/rendering/RenderMeter.cpp Source/WebCore/platform/PopupMenu.h Source/WebCore/platform/mac/PopupMenuMac.h Source/WebCore/platform/mac/SearchPopupMenuMac.h Source/WebCore/platform/SearchPopupMenu.h Source/WebCore/platform/qt/QtStyleOptionWebComboBox.h Source/WebCore/accessibility/AccessibilityProgressIndicator.h Source/WebCore/accessibility/AccessibilityProgressIndicator.cpp Source/WebCore/html/HTMLProgressElement.cpp Source/WebCore/html/HTMLMeterElement.cpp Source/WebCore/html/HTMLMeterElement.idl Source/WebCore/html/HTMLMeterElement.h Source/WebCore/html/HTMLProgressElement.idl Source/WebCore/html/HTMLProgressElement.h Source/WebKit/qt/examples/platformplugin/WebNotificationPresenter.cpp Source/WebKit/qt/examples/platformplugin/WebNotificationPresenter.h Source/WebKit/qt/WebCoreSupport/PopupMenuQt.h Source/WebKit/qt/WebCoreSupport/SearchPopupMenuQt.h Source/WebKit2/WebProcess/WebCoreSupport/WebSearchPopupMenu.h Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/rendering/RenderFlexibleBox.h Copyright: 2003 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/ScrollBehavior.cpp Copyright: 2006, 2007, 2008 Apple Inc. 1998 Netscape Communications Corporation. License: LGPL-2+ Files: Source/WebCore/rendering/RenderApplet.cpp Copyright: 1999 Lars Knoll 2003, 2006, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderEmbeddedObject.cpp Source/WebCore/rendering/RenderEmbeddedObject.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeWin.h Copyright: 2006, 2008 Apple Computer, Inc. 2009 Kenneth Rohde Christiansen License: LGPL-2+ Files: Source/WebCore/rendering/RenderListItem.cpp Source/WebCore/rendering/BidiRun.h Source/WebCore/rendering/BidiRun.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2010 Apple Inc. 2006 Andrew Wellington License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeSafari.cpp Copyright: 2007, 2008, 2009 Apple Inc. 2009 Kenneth Rohde Christiansen License: LGPL-2+ Files: Source/WebCore/rendering/InlineBox.h Copyright: 2003, 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeChromiumLinux.h Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Holger Hans Peter Freyther 2007 Alp Toker 2008, 2009 Google, Inc. 2009 Kenneth Rohde Christiansen License: LGPL-2+ Files: Source/WebCore/rendering/RenderCounter.cpp Copyright: 2004 Allan Sandfeld Jensen 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/SVGRootInlineBox.cpp Source/WebCore/rendering/svg/SVGInlineFlowBox.cpp Source/WebCore/rendering/svg/SVGRootInlineBox.h Copyright: 2006 Oliver Hunt 2006 Apple Computer Inc. 2007 Nikolas Zimmermann 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGViewportContainer.h Source/WebCore/rendering/svg/RenderSVGRoot.h Source/WebCore/rendering/svg/RenderSVGContainer.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2007 Rob Buis 2009 Google, Inc. 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGInline.cpp Copyright: 2006 Oliver Hunt 2006 Apple Inc. 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGBlock.cpp Source/WebCore/rendering/svg/RenderSVGText.h Copyright: 2006 Apple Computer, Inc. 2007 Nikolas Zimmermann 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGImage.h Copyright: 2006 Alexander Kellett 2006, 2009 Apple Inc. 2007 Rob Buis 2009 Google, Inc. 2010 Patrick Gansterer License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGTextPath.cpp Source/WebCore/svg/SVGTextPathElement.h Source/WebCore/svg/SVGElementInstanceList.cpp Source/WebCore/svg/SVGElementInstanceList.h Copyright: 2007 Nikolas Zimmermann License: LGPL-2+ Files: Source/WebCore/rendering/svg/SVGMarkerLayoutInfo.cpp Copyright: 2010. 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2008 Rob Buis 2005, 2007 Eric Seidel 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGHiddenContainer.h Source/WebCore/rendering/svg/RenderSVGGradientStop.cpp Source/WebCore/rendering/svg/RenderSVGHiddenContainer.cpp Source/WebCore/svg/SVGFontFaceSrcElement.h Source/WebCore/svg/SVGMissingGlyphElement.h Source/WebCore/svg/SVGFontFaceNameElement.cpp Source/WebCore/svg/SVGFontFaceSrcElement.cpp Source/WebCore/svg/SVGFontFaceUriElement.h Source/WebCore/svg/SVGMPathElement.cpp Source/WebCore/svg/SVGPathSegList.h Source/WebCore/svg/SVGMissingGlyphElement.cpp Source/WebCore/svg/SVGFontFaceFormatElement.cpp Source/WebCore/svg/ColorDistance.cpp Source/WebCore/svg/ColorDistance.h Source/WebCore/svg/SVGMPathElement.h Source/WebCore/svg/SVGTransformDistance.cpp Source/WebCore/svg/SVGTransformDistance.h Source/WebCore/svg/SVGFontFaceNameElement.h Source/WebCore/svg/SVGFontFaceFormatElement.h Copyright: 2007 Eric Seidel License: LGPL-2+ Files: Source/WebCore/rendering/svg/SVGInlineTextBox.cpp Source/WebCore/rendering/svg/SVGInlineTextBox.h Copyright: 2007 Rob Buis 2007 Nikolas Zimmermann 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGTSpan.h Copyright: 2006 Oliver Hunt 2006 Apple Computer Inc. 2009 Google Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGRoot.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2007, 2008, 2009 Rob Buis 2007 Eric Seidel 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGResourceLinearGradient.h Source/WebCore/rendering/svg/RenderSVGResourceLinearGradient.cpp Source/WebCore/rendering/svg/RenderSVGResourceRadialGradient.h Source/WebCore/rendering/svg/RenderSVGResourcePattern.h Source/WebCore/rendering/svg/RenderSVGResourceRadialGradient.cpp Source/WebCore/rendering/svg/RenderSVGResourcePattern.cpp Copyright: 2006 Nikolas Zimmermann 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGResourceGradient.h Copyright: 2006 Nikolas Zimmermann 2008 Eric Seidel 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/SVGTextLayoutAttributesBuilder.cpp Source/WebCore/rendering/svg/SVGTextLayoutAttributesBuilder.h Source/WebCore/platform/graphics/FontMetrics.h Copyright: 2010-2011. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGText.cpp Copyright: 2006 Apple Computer, Inc. 2006 Alexander Kellett 2006 Oliver Hunt 2007 Nikolas Zimmermann 2008 Rob Buis 2009 Dirk Schulze 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGTransformableContainer.h Source/WebCore/rendering/svg/RenderSVGGradientStop.h Copyright: 2007 Eric Seidel 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGPath.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2006 Apple Computer, Inc 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGTextPath.h Copyright: 2007 Nikolas Zimmermann 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGForeignObject.h Copyright: 2006 Apple Computer, Inc. 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/SVGRenderSupport.h Copyright: 2007 Rob Buis 2007 Nikolas Zimmermann 2007 Eric Seidel 2009 Google, Inc. 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGResource.cpp Copyright: 2006 Nikolas Zimmermann 2007 Rob Buis 2008 Dirk Schulze 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGResourceMasker.h Source/WebCore/rendering/svg/RenderSVGResourceMasker.cpp Source/WebCore/rendering/svg/RenderSVGResource.h Source/WebCore/rendering/svg/RenderSVGResourceClipper.h Source/WebCore/rendering/svg/RenderSVGResourceMarker.h Source/WebCore/platform/graphics/openvg/EGLDisplayOpenVG.h Source/WebCore/platform/graphics/openvg/EGLUtils.h Source/WebCore/platform/graphics/openvg/PathOpenVG.cpp Source/WebCore/platform/graphics/openvg/TiledImageOpenVG.h Source/WebCore/platform/graphics/openvg/PainterOpenVG.h Source/WebCore/platform/graphics/openvg/ImageOpenVG.cpp Source/WebCore/platform/graphics/openvg/GraphicsContextOpenVG.cpp Source/WebCore/platform/graphics/openvg/TiledImageOpenVG.cpp Source/WebCore/platform/graphics/openvg/VGUtils.h Source/WebCore/platform/graphics/openvg/EGLDisplayOpenVG.cpp Source/WebCore/platform/graphics/openvg/SurfaceOpenVG.h Source/WebCore/platform/graphics/openvg/PlatformPathOpenVG.h Source/WebCore/platform/graphics/openvg/SurfaceOpenVG.cpp Source/WebCore/platform/graphics/openvg/PainterOpenVG.cpp Source/WebCore/platform/image-decoders/openvg/ImageDecoderOpenVG.cpp Copyright: 2009-2010. License: LGPL-2+ Files: Source/WebCore/platform/image-decoders/gif/GIFImageReader.* Copyright: 1998 Netscape Communications Corporation, Apple Computer License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGContainer.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2007, 2008 Rob Buis 2007 Eric Seidel 2009 Google, Inc. 2009 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGResourceFilter.h Source/WebCore/rendering/svg/RenderSVGResourceFilter.cpp Source/WebCore/platform/graphics/filters/FEDisplacementMap.cpp Source/WebCore/platform/graphics/filters/FEComposite.cpp Source/WebCore/platform/graphics/filters/FEMorphology.cpp Source/WebCore/platform/graphics/filters/FEOffset.cpp Source/WebCore/platform/graphics/filters/FEComponentTransfer.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2009 Dirk Schulze 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGPath.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2008 Rob Buis 2005, 2007 Eric Seidel 2009 Google, Inc. 2009 Dirk Schulze 2010. 2009 Jeff Schiller License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGImage.cpp Copyright: 2006 Alexander Kellett 2006 Apple Computer, Inc. 2007 Nikolas Zimmermann 2007, 2008, 2009 Rob Buis 2009 Google, Inc. 2009 Dirk Schulze 2010 Patrick Gansterer License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGTSpan.cpp Source/WebCore/rendering/svg/RenderSVGInline.h Source/WebCore/rendering/svg/SVGInlineFlowBox.h Copyright: 2006 Oliver Hunt 2006 Apple Computer Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGInlineText.h Copyright: 2006 Oliver Hunt 2006, 2008 Apple Inc. 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGTransformableContainer.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGResourceClipper.cpp Source/WebCore/rendering/svg/RenderSVGResourceMarker.cpp Source/WebCore/svg/SVGClipPathElement.cpp Copyright: 2004, 2005, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007, 2008 Rob Buis 2009-2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/SVGRenderSupport.cpp Copyright: 2007, 2008 Rob Buis 2007 Nikolas Zimmermann 2007 Eric Seidel 2009 Google, Inc. 2009 Dirk Schulze 2009-2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGForeignObject.cpp Copyright: 2006 Apple Computer, Inc. 2009 Google, Inc. 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGInlineText.cpp Copyright: 2006 Oliver Hunt 2006 Apple Computer Inc. 2007 Nikolas Zimmermann 2008 Rob Buis 2010. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGViewportContainer.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2007 Rob Buis 2007 Eric Seidel 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/svg/RenderSVGResourceGradient.cpp Copyright: 2006 Nikolas Zimmermann 2008 Eric Seidel 2008 Dirk Schulze 2010. License: LGPL-2+ Files: Source/WebCore/rendering/RenderPart.h Source/WebCore/rendering/RenderFrame.h Copyright: 1999 Lars Knoll 2006, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderImage.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeChromiumMac.mm Copyright: 2005, 2006, 2007, 2008, 2009 Apple Inc. 2008, 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeChromiumMac.h Copyright: 2005 Apple Computer, Inc. 2008, 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTableRow.h Source/WebCore/rendering/RenderTableSection.h Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeChromiumSkia.h Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Holger Hans Peter Freyther 2007 Alp Toker 2008, 2009 Google, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderText.cpp Copyright: 2004, 2005, 2006, 2007 Apple Inc. 2006 Andrew Wellington 2006 Graham Dennis License: LGPL-2+ Files: Source/WebCore/rendering/RootInlineBox.h Copyright: 2003, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/style/StyleTransformData.h Source/WebCore/rendering/style/StyleMultiColData.h Source/WebCore/rendering/style/StyleRareInheritedData.h Source/WebCore/rendering/style/StyleInheritedData.h Source/WebCore/rendering/style/CounterContent.h Source/WebCore/rendering/style/StyleSurroundData.h Source/WebCore/rendering/style/StyleDashboardRegion.h Source/WebCore/rendering/style/FillLayer.h Source/WebCore/rendering/style/StyleRareNonInheritedData.h Source/WebCore/rendering/style/StyleMarqueeData.h Source/WebCore/rendering/style/StyleBoxData.h Source/WebCore/rendering/style/StyleBackgroundData.h Source/WebCore/rendering/style/CollapsedBorderValue.h Source/WebCore/rendering/style/CounterDirectives.h Source/WebCore/rendering/style/CursorData.h Source/WebCore/rendering/style/KeyframeList.h Source/WebCore/rendering/style/OutlineValue.h Source/WebCore/rendering/style/StyleFlexibleBoxData.h Source/WebCore/rendering/style/StyleReflection.h Source/WebCore/rendering/style/BorderValue.h Source/WebCore/rendering/style/BorderData.h Source/WebCore/rendering/style/CursorList.h Source/WebCore/rendering/style/StyleVisualData.h Source/WebCore/platform/graphics/transforms/SkewTransformOperation.h Source/WebCore/platform/graphics/transforms/TransformOperations.h Source/WebCore/platform/graphics/transforms/ScaleTransformOperation.h Source/WebCore/platform/graphics/transforms/TransformOperation.h Source/WebCore/platform/graphics/transforms/TranslateTransformOperation.h Source/WebCore/platform/graphics/transforms/MatrixTransformOperation.h Source/WebCore/platform/graphics/transforms/IdentityTransformOperation.h Source/WebCore/platform/graphics/transforms/RotateTransformOperation.h Source/WebCore/platform/animation/TimingFunction.h Source/WebCore/platform/animation/AnimationList.h Source/WebCore/platform/animation/Animation.h Copyright: 2000 Lars Knoll 2003, 2005, 2006, 2007, 2008 Apple Inc. 2006 Graham Dennis License: LGPL-2+ Files: Source/WebCore/rendering/style/StyleFlexibleBoxData.cpp Source/WebCore/rendering/style/KeyframeList.cpp Source/WebCore/rendering/style/StyleSurroundData.cpp Source/WebCore/rendering/style/StyleBoxData.cpp Source/WebCore/rendering/style/CounterDirectives.cpp Source/WebCore/rendering/style/StyleTransformData.cpp Source/WebCore/rendering/style/StyleMultiColData.cpp Source/WebCore/rendering/style/FillLayer.cpp Source/WebCore/rendering/style/StyleRareNonInheritedData.cpp Source/WebCore/rendering/style/StyleVisualData.cpp Source/WebCore/rendering/style/StyleBackgroundData.cpp Source/WebCore/rendering/style/StyleMarqueeData.cpp Source/WebCore/rendering/style/StyleInheritedData.cpp Source/WebCore/platform/graphics/transforms/RotateTransformOperation.cpp Source/WebCore/platform/graphics/transforms/ScaleTransformOperation.cpp Source/WebCore/platform/graphics/transforms/SkewTransformOperation.cpp Source/WebCore/platform/graphics/transforms/MatrixTransformOperation.cpp Source/WebCore/platform/graphics/transforms/TranslateTransformOperation.cpp Source/WebCore/platform/graphics/transforms/TransformOperations.cpp Source/WebCore/platform/animation/AnimationList.cpp Source/WebCore/platform/animation/Animation.cpp Copyright: 1999 Antti Koivisto 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/style/SVGRenderStyle.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2005, 2006 Apple Computer, Inc. 2010. License: LGPL-2+ Files: Source/WebCore/rendering/style/ShadowData.cpp Copyright: 1999 Antti Koivisto 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/style/RenderStyleConstants.h Copyright: 2000 Lars Knoll 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2006 Graham Dennis 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/rendering/style/ShadowData.h Copyright: 2000 Lars Knoll 2003, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2006 Graham Dennis License: LGPL-2+ Files: Source/WebCore/rendering/style/SVGRenderStyleDefs.cpp Source/WebCore/rendering/style/SVGRenderStyle.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2010. 1999 Antti Koivisto 1999-2003 Lars Knoll 2002-2003 Dirk Mueller 2002 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/style/ContentData.cpp Source/WebCore/rendering/style/RenderStyle.cpp Source/WebCore/rendering/style/StyleRareInheritedData.cpp Copyright: 1999 Antti Koivisto 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/style/QuotesData.cpp Source/WebCore/rendering/style/QuotesData.h Source/WebCore/rendering/RenderQuote.h Source/WebCore/rendering/RenderQuote.cpp Copyright: 2011 Nokia Inc. License: LGPL-2+ Files: Source/WebCore/rendering/style/DataRef.h Copyright: 2000 Lars Knoll 2003, 2005, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/style/NinePieceImage.h Source/WebCore/rendering/style/StyleGeneratedImage.cpp Source/WebCore/rendering/style/StyleGeneratedImage.h Source/WebCore/rendering/style/StyleCachedImage.cpp Source/WebCore/rendering/style/StyleCachedImage.h Source/WebCore/rendering/style/NinePieceImage.cpp Source/WebCore/rendering/style/StyleImage.h Copyright: 2000 Lars Knoll 2003, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/style/ContentData.h Copyright: 2000 Lars Knoll 2003, 2005, 2006, 2007, 2008, 2010 Apple Inc. 2006 Graham Dennis License: LGPL-2+ Files: Source/WebCore/rendering/style/RenderStyle.h Copyright: 2000 Lars Knoll 2003, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2006 Graham Dennis License: LGPL-2+ Files: Source/WebCore/rendering/style/SVGRenderStyleDefs.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2010. 2000-2003 Lars Knoll License: LGPL-2+ Files: Source/WebCore/rendering/RenderCounter.h Copyright: 2004 Allan Sandfeld Jensen 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderOverflow.h Source/WebCore/rendering/InlineFlowBox.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderSlider.cpp Source/WebCore/rendering/ShadowElement.cpp Source/WebCore/html/StepRange.cpp Source/WebCore/html/StepRange.h Source/JavaScriptCore/wtf/OwnPtr.h Source/JavaScriptCore/wtf/RefCounted.h Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTableCell.h Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/FixedTableLayout.cpp Copyright: 2002 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTextControlSingleLine.h Copyright: 2006, 2007, 2009 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) 2010 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/rendering/RenderButton.h Copyright: 2005 Apple Computer License: LGPL-2+ Files: Source/WebCore/rendering/RenderBox.h Copyright: 1999 Lars Knoll 2003, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderFieldset.h Source/WebCore/html/HTMLFrameElement.cpp Source/WebCore/html/HTMLFrameElement.h Copyright: 1999 Lars Knoll 2004, 2006, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/HitTestRequest.h Copyright: 2006 Apple Computer, Inc. 2009 Torch Mobile Inc. http://www.torchmobile.com/ License: LGPL-2+ Files: Source/WebCore/rendering/RenderBoxModelObject.h Copyright: 1999 Lars Knoll 2003, 2006, 2007, 2009 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTextControlSingleLine.cpp Copyright: 2006, 2007, 2010 Apple Inc. 2010 Google Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/rendering/RenderTableRow.cpp Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeChromiumWin.cpp Copyright: 2006 Apple Computer, Inc. 2008, 2009 Google, Inc. 2009 Kenneth Rohde Christiansen License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeChromiumSkia.cpp Copyright: 2007 Apple Inc. 2007 Alp Toker 2008 Collabora Ltd. 2008, 2009 Google Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeChromiumLinux.cpp Copyright: 2007 Apple Inc. 2007 Alp Toker 2008 Collabora Ltd. 2008, 2009 Google Inc. 2009 Kenneth Rohde Christiansen License: LGPL-2+ Files: Source/WebCore/rendering/RenderObject.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. 2009 Google Inc. 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/rendering/RenderBoxModelObject.cpp Copyright: 1999 Lars Knoll 2005, 2006, 2007, 2008, 2009 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/rendering/InlineIterator.h Copyright: 2000 Lars Knoll 2003, 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All right reserved. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTableCell.cpp Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderSelectionInfo.h Copyright: 2000 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderFlexibleBox.cpp Copyright: 1999 Lars Knoll 2003 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/rendering/RenderTable.cpp Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/rendering/RenderThemeWin.cpp Copyright: 2006, 2007 Apple Inc. 2009 Kenneth Rohde Christiansen License: LGPL-2+ Files: Source/WebCore/platform/PlatformTouchEvent.h Source/WebCore/platform/network/qt/NetworkStateNotifierQt.cpp Source/WebCore/platform/network/qt/ResourceRequestQt.cpp Source/WebCore/platform/network/qt/NetworkStateNotifierPrivate.h Source/WebCore/platform/network/qt/DnsPrefetchHelper.cpp Source/WebCore/platform/network/qt/DnsPrefetchHelper.h Source/WebCore/platform/graphics/texmap/TextureMapperPlatformLayer.h Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.h Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp Source/WebCore/platform/graphics/qt/GraphicsLayerQt.cpp Source/WebCore/platform/graphics/qt/GraphicsLayerQt.h Source/WebCore/platform/PlatformTouchPoint.h Source/WebCore/platform/qt/PlatformTouchEventQt.cpp Source/WebCore/platform/qt/PlatformTouchPointQt.cpp Source/WebCore/history/qt/HistoryItemQt.cpp Source/WebCore/plugins/symbian/PluginContainerSymbian.cpp Source/WebCore/plugins/symbian/PluginContainerSymbian.h Source/WebCore/plugins/symbian/npinterface.h Source/WebCore/plugins/symbian/PluginDatabaseSymbian.cpp Source/WebCore/plugins/symbian/PluginPackageSymbian.cpp Source/WebCore/plugins/win/PaintHooks.asm Source/WebCore/plugins/qt/PluginContainerQt.h Source/WebCore/plugins/qt/PluginContainerQt.cpp Source/WebCore/bridge/qt/qt_pixmapruntime.cpp Source/WebCore/bridge/qt/qt_pixmapruntime.h Source/JavaScriptCore/heap/MarkStackSymbian.cpp Source/WebKit/qt/Api/qwebinspector.h Source/WebKit/qt/Api/qwebinspector.cpp Source/WebKit/qt/Api/qgraphicswebview.h Source/WebKit/qt/Api/qwebelement.cpp Source/WebKit/qt/Api/qwebelement.h Source/WebKit/qt/declarative/plugin.cpp Source/WebKit/qt/declarative/qdeclarativewebview_p.h Source/WebKit/qt/declarative/qdeclarativewebview.cpp Source/WebKit/qt/docs/webkitsnippets/webpage/main.cpp Source/WebKit/qt/docs/webkitsnippets/webelement/main.cpp Source/WebKit/qt/docs/webkitsnippets/simple/main.cpp Source/WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.cpp Source/WebKit/qt/tests/hybridPixmap/widget.cpp Source/WebKit/qt/tests/hybridPixmap/widget.h Source/WebKit/qt/tests/util.h Source/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.h Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/platform/Length.h Copyright: 1999 Lars Knoll 2006, 2008 Apple Inc. 2011 Rik Cabanier 2011 Adobe Systems Incorporated. License: LGPL-2+ Files: Source/WebCore/platform/network/MIMESniffing.cpp Source/WebCore/platform/network/HTTPStatusCodes.h Source/WebCore/platform/network/MIMESniffing.h Source/WebCore/platform/network/qt/QtMIMETypeSniffer.h Source/WebCore/platform/network/qt/QtMIMETypeSniffer.cpp Source/WebCore/html/HTMLSummaryElement.h Source/WebCore/html/HTMLSummaryElement.cpp Source/WebKit/qt/symbian/platformplugin/WebPlugin.h Source/WebKit/qt/symbian/platformplugin/PlayerButton.h Source/WebKit/qt/symbian/platformplugin/PlayerLabel.cpp Source/WebKit/qt/symbian/platformplugin/HTML5VideoWidget.cpp Source/WebKit/qt/symbian/platformplugin/WebPlugin.cpp Source/WebKit/qt/symbian/platformplugin/OverlayWidget.h Source/WebKit/qt/symbian/platformplugin/PlayerButton.cpp Source/WebKit/qt/symbian/platformplugin/HTML5VideoWidget.h Source/WebKit/qt/symbian/platformplugin/HTML5VideoPlugin.cpp Source/WebKit/qt/symbian/platformplugin/PlayerLabel.h Source/WebKit/qt/symbian/platformplugin/HTML5VideoPlugin.h Source/WebKit/qt/symbian/platformplugin/OverlayWidget.cpp Source/WebKit/qt/tests/MIMESniffing/tst_MIMESniffing.cpp Source/WebKit/qt/tests/MIMESniffing/TestData.h Source/WebKit/qt/tests/benchmarks/webgl/tst_webgl.cpp Source/WebKit/qt/WebCoreSupport/QTKitFullScreenVideoHandler.h Source/WebKit/qt/WebCoreSupport/QTKitFullScreenVideoHandler.mm Source/WebKit/qt/WebCoreSupport/FullScreenVideoQt.cpp Source/WebKit2/UIProcess/API/qt/tests/qgraphicswkview/tst_qgraphicswkview.cpp Source/WebKit2/UIProcess/API/qt/tests/util.h Source/WebKit2/UIProcess/API/qt/tests/qwkpage/tst_qwkpage.cpp Copyright: 2011 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/platform/network/FormData.h Copyright: 2004, 2006, 2008, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/network/FormData.cpp Copyright: 2004, 2006, 2008, 2011 Apple Inc. 2009 Google Inc. License: LGPL-2+ Files: Source/WebCore/platform/network/qt/QNetworkReplyHandler.cpp Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2007 Staikos Computing Services Inc. 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebCore/platform/network/FormDataBuilder.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/platform/PopupMenuClient.h Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies). 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/cocoa/FontPlatformDataCocoa.mm Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/LightSource.h Copyright: 2008 Alex Mathews 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2010 Zoltan Herczeg License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FEComponentTransfer.h Source/WebCore/platform/graphics/filters/FEDiffuseLighting.cpp Source/WebCore/platform/graphics/filters/FEFlood.h Source/WebCore/platform/graphics/filters/FEMerge.cpp Source/WebCore/platform/graphics/filters/FEDiffuseLighting.h Source/WebCore/platform/graphics/filters/FEGaussianBlur.h Source/WebCore/platform/graphics/filters/FEComposite.h Source/WebCore/platform/graphics/filters/FEOffset.h Source/WebCore/platform/graphics/filters/FESpecularLighting.h Source/WebCore/platform/graphics/filters/FEDisplacementMap.h Source/WebCore/platform/graphics/filters/FETile.h Source/WebCore/platform/graphics/filters/FEMorphology.h Source/WebCore/platform/graphics/filters/FEColorMatrix.h Source/WebCore/platform/graphics/filters/FEBlend.h Source/WebCore/platform/graphics/filters/FESpecularLighting.cpp Source/WebCore/platform/graphics/filters/FEMerge.h Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FEColorMatrix.cpp Source/WebCore/platform/graphics/filters/FEBlend.cpp Source/WebCore/platform/graphics/filters/FEFlood.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2009 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FETile.cpp Source/WebCore/platform/graphics/filters/SourceGraphic.h Source/WebCore/svg/graphics/filters/SVGFilterBuilder.h Copyright: 2008 Alex Mathews 2009 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/PointLightSource.h Source/WebCore/platform/graphics/filters/DistantLightSource.h Source/WebCore/platform/graphics/filters/SpotLightSource.h Copyright: 2008 Alex Mathews 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FEDropShadow.h Source/WebCore/platform/graphics/filters/FEDropShadow.cpp Source/WebCore/css/CSSMutableValue.h Source/WebCore/svg/SVGFEDropShadowElement.idl Source/WebCore/svg/SVGFEDropShadowElement.h Source/WebCore/svg/SVGFEDropShadowElement.cpp Copyright: 2011. License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/SourceAlpha.cpp Source/WebCore/platform/graphics/filters/Filter.h Source/WebCore/platform/graphics/filters/SourceAlpha.h Source/WebCore/platform/graphics/filters/SourceGraphic.cpp Source/WebCore/svg/SVGFEConvolveMatrixElement.cpp Source/WebCore/svg/SVGFEConvolveMatrixElement.h Source/WebCore/svg/SVGFEMorphologyElement.cpp Source/WebCore/svg/graphics/filters/SVGFilter.h Source/WebCore/svg/graphics/filters/SVGFilterBuilder.cpp Source/WebCore/svg/SVGFEMorphologyElement.h Copyright: 2009 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FETurbulence.h Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2009 Dirk Schulze 2010 Renata Hodovan License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FilterEffect.h Source/WebCore/platform/graphics/filters/FilterEffect.cpp Copyright: 2008 Alex Mathews 2009 Dirk Schulze 2010. License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/LightSource.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2010 Zoltan Herczeg 2011 Renata Hodovan , University of Szeged. License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FETurbulence.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2009 Dirk Schulze 2010 Renata Hodovan 2011 Gabor Loki License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FEConvolveMatrix.h Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2010 Zoltan Herczeg License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FEGaussianBlur.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2009 Dirk Schulze 2010 Igalia, S.L. 2010. License: LGPL-2+ Files: Source/WebCore/platform/graphics/filters/FEConvolveMatrix.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2009 Dirk Schulze 2010 Zoltan Herczeg License: LGPL-2+ Files: Source/WebCore/platform/graphics/FontPlatformData.h Copyright: 2006, 2007, 2008, 2010 Apple Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Holger Hans Peter Freyther 2007 Pioneer Research Center USA, Inc. 2010, 2011 Brent Fulgham License: LGPL-2+ Files: Source/WebCore/platform/graphics/FontFastPath.cpp Copyright: 2003, 2006, 2010 Apple Inc. 2008 Holger Hans Peter Freyther 2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/SVGGlyph.h Copyright: 2007 Eric Seidel 2007 Nikolas Zimmermann 2008 Rob Buis 2011. License: LGPL-2+ Files: Source/WebCore/platform/graphics/FloatPoint3D.cpp Source/WebCore/platform/graphics/FloatPoint3D.h Copyright: 2004, 2005, 2006 Nikolas Zimmermann License: LGPL-2+ Files: Source/WebCore/platform/graphics/FontFallbackList.h Source/WebCore/html/HTMLQuoteElement.idl Source/WebCore/html/HTMLFontElement.idl Source/WebCore/html/HTMLMenuElement.idl Source/WebCore/html/HTMLParamElement.idl Source/WebCore/html/HTMLOListElement.idl Source/WebCore/html/HTMLIsIndexElement.idl Source/WebCore/html/HTMLHeadingElement.idl Source/WebCore/html/HTMLScriptElement.idl Source/WebCore/html/HTMLUListElement.idl Source/WebCore/html/HTMLHeadElement.idl Source/WebCore/html/HTMLModElement.idl Source/WebCore/html/HTMLDivElement.idl Source/WebCore/html/HTMLParagraphElement.idl Source/WebCore/html/HTMLMetaElement.idl Source/WebCore/html/HTMLDListElement.idl Source/WebCore/html/HTMLLIElement.idl Source/WebCore/html/HTMLHtmlElement.idl Source/WebCore/html/HTMLHRElement.idl Source/WebCore/html/HTMLOptGroupElement.idl Source/WebCore/html/HTMLDirectoryElement.idl Source/JavaScriptCore/wtf/OwnArrayPtr.h Source/JavaScriptCore/wtf/Noncopyable.h Copyright: 2006, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/openvg/SharedResourceOpenVG.h Source/WebCore/platform/graphics/openvg/SharedResourceOpenVG.cpp Source/WebCore/platform/graphics/openvg/VGUtils.cpp Copyright: 2009. License: LGPL-2+ Files: Source/WebCore/platform/graphics/FontPlatformData.cpp Copyright: 2011 Brent Fulgham License: LGPL-2+ Files: Source/WebCore/platform/graphics/TextRun.h Copyright: 2000 Lars Knoll 2003, 2006, 2007, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/freetype/FontPlatformData.h Copyright: 2006, 2007, 2008 Apple Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Holger Hans Peter Freyther 2007 Pioneer Research Center USA, Inc. 2010 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/platform/graphics/freetype/FontCacheFreeType.cpp Source/WebCore/platform/graphics/freetype/FontCustomPlatformDataFreeType.cpp Copyright: 2008 Alp Toker 2010 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/platform/graphics/freetype/FontPlatformDataFreeType.cpp Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007, 2008 Alp Toker 2007 Holger Hans Peter Freyther 2009, 2010 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/platform/graphics/pango/FontPlatformData.h Copyright: 2006, 2007, 2008 Apple Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Holger Hans Peter Freyther 2007 Pioneer Research Center USA, Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/pango/FontCustomPlatformDataPango.cpp Source/WebCore/platform/graphics/pango/FontCachePango.cpp Copyright: 2008 Alp Toker License: LGPL-2+ Files: Source/WebCore/platform/graphics/pango/FontPlatformDataPango.cpp Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007, 2008 Alp Toker 2007 Holger Hans Peter Freyther 2007 Pioneer Research Center USA, Inc. 2009 Igalia S.L. License: LGPL-2+ Files: Source/WebCore/platform/graphics/FontDescription.h Copyright: 2000 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. 2007 Nicholas Shanks License: LGPL-2+ Files: Source/WebCore/platform/graphics/WidthIterator.cpp Copyright: 2003, 2006, 2008, 2009, 2010, 2011 Apple Inc. 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebCore/platform/graphics/gstreamer/GRefPtrGStreamer.h Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowMac.mm Source/WebCore/platform/graphics/gstreamer/GRefPtrGStreamer.cpp Copyright: 2011 Igalia S.L License: LGPL-2+ Files: Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.h Source/WebCore/platform/graphics/gstreamer/VideoSinkGStreamer.cpp Copyright: 2007 OpenedHand 2007 Alp Toker License: LGPL-2+ Files: Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindow.h Source/WebCore/platform/graphics/gstreamer/ImageGStreamer.h Source/WebCore/platform/graphics/gstreamer/ImageGStreamerCairo.cpp Source/WebCore/platform/graphics/gstreamer/GStreamerGWorld.h Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowGtk.cpp Source/WebCore/platform/graphics/gstreamer/GOwnPtrGStreamer.h Source/WebCore/platform/graphics/gstreamer/GOwnPtrGStreamer.cpp Source/WebCore/platform/graphics/gstreamer/GStreamerGWorld.cpp Source/WebCore/platform/graphics/gstreamer/ImageGStreamerCG.mm Copyright: 2010 Igalia S.L License: LGPL-2+ Files: Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp Copyright: 2007, 2009 Apple Inc. 2007 Collabora Ltd. 2007 Alp Toker 2009 Gustavo Noronha Silva 2009, 2010 Igalia S.L License: LGPL-2+ Files: Source/WebCore/platform/graphics/gstreamer/PlatformVideoWindowEfl.cpp Copyright: 2010 Samsung Electronics License: LGPL-2+ Files: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp Copyright: 2009, 2010 Sebastian Dröge License: LGPL-2+ Files: Source/WebCore/platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.h Copyright: 2007, 2009 Apple Inc. 2007 Collabora Ltd. 2007 Alp Toker 2009, 2010 Igalia S.L License: LGPL-2+ Files: Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.h Copyright: 2009,2010 Sebastian Dröge License: LGPL-2+ Files: Source/WebCore/platform/graphics/PathTraversalState.cpp Copyright: 2006, 2007 Eric Seidel License: LGPL-2+ Files: Source/WebCore/platform/graphics/SVGGlyph.cpp Copyright: 2007, 2008 Nikolas Zimmermann 2010-2011. License: LGPL-2+ Files: Source/WebCore/platform/graphics/win/IconWin.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2007-2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/win/FontPlatformDataWin.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2008 Brent Fulgham License: LGPL-2+ Files: Source/WebCore/platform/graphics/win/FontCustomPlatformDataCairo.cpp Copyright: 2007, 2008 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/win/FontPlatformDataCairoWin.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2007 Alp Toker 2008, 2010, 2011 Brent Fulgham License: LGPL-2+ Files: Source/WebCore/platform/graphics/win/RefCountedGDIHandle.h Copyright: 2006, 2007, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/win/FontCustomPlatformDataCairo.h Copyright: 2007 Apple Computer, Inc. 2010 Brent Fulgham License: LGPL-2+ Files: Source/WebCore/platform/graphics/Font.h Copyright: 2000 Lars Knoll 2003, 2006, 2007, 2010, 2011 Apple Inc. 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebCore/platform/graphics/StrokeStyleApplier.h Copyright: 2008 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/platform/graphics/mac/FontMac.mm Source/WebCore/html/HTMLAnchorElement.cpp Copyright: 1999 Lars Knoll 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/mac/FontCustomPlatformData.h Copyright: 2007 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/mac/ComplexTextControllerATSUI.cpp Copyright: 1999 Lars Knoll 2003, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/Font.cpp Copyright: 1999 Lars Knoll 2003, 2006, 2010, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/graphics/qt/FontPlatformData.h Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther 2009 Torch Mobile Inc. http://www.torchmobile.com/ License: LGPL-2+ Files: Source/WebCore/platform/graphics/qt/GraphicsContext3DQt.cpp Copyright: 2010 Tieto Corporation. License: LGPL-2+ Files: Source/WebCore/platform/graphics/qt/FontPlatformDataQt.cpp Copyright: 2008 Holger Hans Peter Freyther 2009 Torch Mobile Inc. http://www.torchmobile.com/ 2011 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/platform/graphics/qt/GlyphPageTreeNodeQt.cpp Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebCore/platform/graphics/qt/SimpleFontDataQt.cpp Copyright: 2008, 2009, 2010, 2011 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebCore/platform/graphics/qt/FontCacheQt.cpp Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther 2006, 2008 Apple Inc. 2007 Nicholas Shanks License: LGPL-2+ Files: Source/WebCore/platform/graphics/qt/FontQt.cpp Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2008, 2010 Holger Hans Peter Freyther 2009 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/platform/graphics/WidthIterator.h Copyright: 2003, 2006, 2008, 2011 Apple Inc. 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebCore/platform/graphics/SimpleFontData.h Copyright: 2006, 2008, 2010 Apple Inc. 2007-2008 Torch Mobile, Inc. License: LGPL-2+ Files: Source/WebCore/platform/image-decoders/ImageDecoder.cpp Copyright: 2008-2009 Torch Mobile, Inc. 2009-2010. License: LGPL-2+ Files: Source/WebCore/platform/Arena.h Copyright: 1998-2000 Netscape Communications Corporation. 2003-6 Apple Computer 2010. License: LGPL-2+ Files: Source/WebCore/platform/TreeShared.h Copyright: 2006, 2007, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/Length.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. 2006 Andrew Wellington License: LGPL-2+ Files: Source/WebCore/platform/text/BidiResolver.h Copyright: 2000 Lars Knoll 2003, 2004, 2006, 2007, 2008 Apple Inc. All right reserved. License: LGPL-2+ Files: Source/WebCore/platform/text/BidiContext.h Source/WebCore/platform/text/BidiContext.cpp Copyright: 2000 Lars Knoll 2003, 2004, 2006, 2007, 2009, 2010 Apple Inc. All right reserved. License: LGPL-2+ Files: Source/WebCore/platform/text/UnicodeRange.h Source/WebCore/platform/text/UnicodeRange.cpp Copyright: 2007 Apple Computer, Inc. 1998 Netscape Communications Corporation. License: LGPL-2+ Files: Source/WebCore/platform/text/SegmentedString.h Source/WebCore/platform/text/SegmentedString.cpp Source/WebCore/platform/text/PlatformString.h Source/WebCore/css/CSSStyleDeclaration.cpp Source/WebCore/css/CSSValue.h Source/WebCore/css/FontFamilyValue.cpp Source/WebCore/css/CSSPropertyLonghand.cpp Source/WebCore/css/CSSPrimitiveValue.cpp Source/WebCore/html/CollectionCache.cpp Source/WebCore/html/CollectionCache.h Source/JavaScriptCore/runtime/PropertyMapHashTable.h Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/text/TextBreakIteratorICU.cpp Source/WebCore/platform/text/TextBreakIterator.h Copyright: 2006 Lars Knoll 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/text/Base64.cpp Copyright: 2000-2001 Dawit Alemayehu 2006 Alexey Proskuryakov 2007, 2008 Apple Inc. 2010 Patrick Gansterer 1996-1999. License: LGPL-2+ Files: Source/WebCore/platform/text/BidiRunList.h Copyright: 2000 Lars Knoll 2003, 2004, 2006, 2007, 2008 Apple Inc. All right reserved. 2011 Google, Inc. License: LGPL-2+ Files: Source/WebCore/platform/text/wince/TextBreakIteratorWinCE.cpp Copyright: 2006 Lars Knoll 2007-2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/WebCore/platform/text/ParserUtilities.h Copyright: 2008 Apple Inc. 2002, 2003 The Karbon Developers 2006, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/platform/text/mac/StringImplMac.mm Source/WebCore/platform/text/cf/StringImplCF.cpp Source/WebCore/html/HTMLBRElement.idl Copyright: 2006, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/text/mac/TextBreakIteratorInternalICUMac.mm Copyright: 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/platform/text/String.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. 2007-2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/WebCore/platform/text/qt/TextBreakIteratorQt.cpp Copyright: 2006 Lars Knoll License: LGPL-2+ Files: Source/WebCore/platform/HashTools.h Source/WebCore/make-hash-tools.pl Copyright: 2010 Andras Becsi , University of Szeged License: LGPL-2+ Files: Source/WebCore/platform/mac/SearchPopupMenuMac.mm Copyright: 2006 Apple Computer, Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/platform/mac/PopupMenuMac.mm Copyright: 2006, 2008, 2010, 2011 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebCore/platform/qt/RenderThemeQt.cpp Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2006 Zack Rusin 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebCore/platform/Arena.cpp Copyright: 1998-2000 Netscape Communications Corporation. 2003-6 Apple Computer License: LGPL-2+ Files: Source/WebCore/platform/image-encoders/PNGImageEncoder.h Copyright: 2007-2009 Torch Mobile, Inc. 2009-2010. License: LGPL-2+ Files: Source/WebCore/platform/image-encoders/JPEGImageEncoder.h Source/WebCore/platform/image-encoders/JPEGImageEncoder.cpp Copyright: 2009 Torch Mobile, Inc. 2009-2010. License: LGPL-2+ Files: Source/WebCore/css/quirks.css Copyright: 2000-2003 Lars Knoll 2004, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSStyleRule.h Source/WebCore/css/CSSImportRule.h Source/WebCore/css/CSSFontFaceRule.h Source/WebCore/css/CSSCharsetRule.h Source/WebCore/css/CSSPageRule.h Source/WebCore/css/CSSUnknownRule.h Copyright: 2002, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/StyleSheet.cpp Copyright: 2004, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSImageValue.h Source/WebCore/css/CSSInheritedValue.h Source/WebCore/css/CSSMutableStyleDeclaration.h Source/WebCore/css/CSSInitialValue.h Source/WebCore/css/Counter.h Source/WebCore/css/CSSStyleDeclaration.h Source/WebCore/css/CSSBorderImageValue.cpp Source/WebCore/css/CSSBorderImageValue.h Source/WebCore/css/DashboardRegion.h Source/WebCore/css/CSSPropertyLonghand.h Source/WebCore/css/CSSImageValue.cpp Source/WebCore/css/CSSQuirkPrimitiveValue.h Source/WebCore/css/FontValue.h Source/WebCore/css/FontFamilyValue.h Source/WebCore/xml/XSLImportRule.cpp Source/WebCore/xml/XSLStyleSheetLibxslt.cpp Source/JavaScriptCore/wtf/text/AtomicString.h Copyright: 2004, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSValueList.h Source/JavaScriptCore/wtf/text/WTFString.h Copyright: 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSRule.h Copyright: 2002, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSCursorImageValue.h Copyright: 2006 Rob Buis 2008 Apple Inc. All right reserved. License: LGPL-2+ Files: Source/WebCore/css/mediaControlsGtk.css Copyright: 2009 Zan Dobersek License: LGPL-2+ Files: Source/WebCore/css/CSSCharsetRule.cpp Copyright: 2006, 2008 Apple Inc. 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/css/CSSMediaRule.h Copyright: 2002, 2006, 2008 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/css/CSSRuleList.cpp Copyright: 2002, 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSComputedStyleDeclaration.cpp Copyright: 2004 Zack Rusin 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2007 Alexey Proskuryakov 2007 Nicholas Shanks 2011 Sencha, Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSCursorImageValue.cpp Copyright: 2006 Rob Buis 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/SVGCSSComputedStyleDeclaration.cpp Copyright: 2007 Eric Seidel 2007 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/css/SVGCSSParser.cpp Copyright: 2008 Eric Seidel 2004, 2005, 2007 Nikolas Zimmermann 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/css/makeprop.pl Copyright: 1999 Waldo Bastian 2007, 2008 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2010 Andras Becsi , University of Szeged License: LGPL-2+ Files: Source/WebCore/css/CSSParserValues.cpp Copyright: 2003 Lars Knoll 2004, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSMutableStyleDeclaration.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2011 Research In Motion Limited. License: LGPL-2+ Files: Source/WebCore/css/CSSSelector.cpp Copyright: 1999-2003 Lars Knoll 2002, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008 David Smith 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/css/SVGCSSStyleSelector.cpp Copyright: 2005 Apple Computer, Inc. 2004, 2005, 2007 Nikolas Zimmermann 2007 Alexey Proskuryakov 1999-2003 Lars Knoll License: LGPL-2+ Files: Source/WebCore/css/CSSMediaRule.cpp Copyright: 2002, 2005, 2006 Apple Computer, Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/css/html.css Copyright: 2000 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSFontFaceRule.cpp Source/WebCore/css/CSSPageRule.cpp Source/WebCore/css/CSSStyleRule.cpp Copyright: 2002, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/StyleBase.cpp Source/WebCore/css/StyleList.cpp Copyright: 1999-2003 Lars Knoll 2002, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSValueList.cpp Copyright: 2004, 2005, 2006, 2007, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSStyleSheet.cpp Source/WebCore/css/StyleSheetList.h Source/WebCore/css/StyleSheetList.cpp Copyright: 2004, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/MediaList.cpp Copyright: 2004, 2006, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/Rect.h Copyright: 1999-2003 Lars Knoll 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSPrimitiveValue.h Copyright: 2004, 2005, 2006, 2008 Apple Inc. 2007 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/css/CSSGrammar.y Copyright: 2002-2003 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2006 Alexey Proskuryakov 2008 Eric Seidel License: LGPL-2+ Files: Source/WebCore/css/CSSParser.h Copyright: 2003 Lars Knoll 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. 2008 Eric Seidel 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. License: LGPL-2+ Files: Source/WebCore/css/CSSSelector.h Copyright: 1999-2003 Lars Knoll 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSParser.cpp Copyright: 2003 Lars Knoll 2005 Allan Sandfeld Jensen 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2007 Nicholas Shanks 2008 Eric Seidel 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/css/CSSNamespace.h Copyright: 1999-2003 Lars Knoll 2004, 2006, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSParserValues.h Copyright: 2003 Lars Knoll 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSRule.cpp Copyright: 2002, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/ShadowValue.h Copyright: 2004, 2005, 2006, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/makevalues.pl Copyright: 1999 Waldo Bastian 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2010 Andras Becsi , University of Szeged License: LGPL-2+ Files: Source/WebCore/css/StyleBase.h Copyright: 1999-2003 Lars Knoll 1999 Waldo Bastian 2006 Samuel Weinig 2004, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSHelper.h Copyright: 1999 Lars Knoll 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSRuleList.h Copyright: 2002, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/css/MediaList.h Copyright: 2004, 2006, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/StyleSheet.h Source/WebCore/xml/XSLImportRule.h Source/WebCore/xml/XSLStyleSheet.h Copyright: 2004, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/ShadowValue.cpp Copyright: 2004, 2005, 2006, 2009 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSImportRule.cpp Copyright: 2002, 2005, 2006, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSStyleSelector.cpp Copyright: 1999 Lars Knoll 2006, 2007 Nicholas Shanks 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2007 Alexey Proskuryakov 2007, 2008 Eric Seidel 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2011, Code Aurora Forum. 2011. License: LGPL-2+ Files: Source/WebCore/css/StyleList.h Copyright: 1999-2003 Lars Knoll 2004, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSComputedStyleDeclaration.h Copyright: 2004 Zack Rusin 2004, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/CSSStyleSheet.h Copyright: 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/css/maketokenizer Copyright: 2003 Lars Knoll License: LGPL-2+ Files: Source/WebCore/accessibility/efl/AccessibilityObjectEfl.cpp Copyright: 2008 Apple Ltd. 2009-2010 ProFUSION embedded systems 2009-2010 Samsung Electronics License: LGPL-2+ Files: Source/WebCore/accessibility/qt/AccessibilityObjectQt.cpp Copyright: 2008 Apple Ltd. License: LGPL-2+ Files: Source/WebCore/plugins/IFrameShimSupport.h Copyright: 2011 Robert Hogan . License: LGPL-2+ Files: Source/WebCore/plugins/PluginData.cpp Copyright: 2000 Harri Porten 2000 Daniel Molkentin 2000 Stefan Schimanski 2003, 2004, 2005, 2006, 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/plugins/symbian/PluginViewSymbian.cpp Copyright: 2009, 2010 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/editing/EditingBehaviorTypes.h Source/WebCore/editing/EditingBehavior.h Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/editing/TextCheckingHelper.h Copyright: 2006, 2007, 2008 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/bridge/npruntime_internal.h Copyright: 2007-2008 Collabora Ltd. License: LGPL-2+ Files: Source/WebCore/generated/tokenizer.cpp Copyright: 2003 Lars Knoll License: LGPL-2+ Files: Source/WebCore/generated/CSSGrammar.cpp Copyright: 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 2002-2003 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2006 Alexey Proskuryakov 2008 Eric Seidel License: LGPL-2+ Files: Source/WebCore/svg/SVGDefsElement.cpp Source/WebCore/svg/SVGFEFuncRElement.cpp Source/WebCore/svg/SVGTitleElement.cpp Source/WebCore/svg/SVGTRefElement.cpp Source/WebCore/svg/SVGDefsElement.h Source/WebCore/svg/SVGFEFuncAElement.cpp Source/WebCore/svg/SVGFEMergeNodeElement.cpp Source/WebCore/svg/SVGTitleElement.h Source/WebCore/svg/SVGSwitchElement.cpp Source/WebCore/svg/SVGSymbolElement.cpp Source/WebCore/svg/SVGFEFuncBElement.cpp Source/WebCore/svg/SVGFEFuncGElement.cpp Source/WebCore/svg/SVGSymbolElement.h Source/WebCore/svg/SVGFEMergeNodeElement.h Source/WebCore/svg/SVGSwitchElement.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGAnimateElement.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005 Rob Buis 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGLength.h Source/WebCore/svg/SVGImageElement.h Source/WebCore/svg/SVGRectElement.h Source/WebCore/svg/SVGStringList.h Source/WebCore/svg/SVGPolygonElement.h Source/WebCore/svg/SVGLengthList.h Source/WebCore/svg/SVGPolygonElement.cpp Source/WebCore/svg/SVGRadialGradientElement.h Source/WebCore/svg/SVGPolylineElement.cpp Source/WebCore/svg/SVGGradientElement.h Source/WebCore/svg/SVGEllipseElement.h Source/WebCore/svg/SVGLineElement.h Source/WebCore/svg/SVGCircleElement.h Source/WebCore/svg/SVGCursorElement.h Source/WebCore/svg/SVGLinearGradientElement.h Source/WebCore/svg/SVGPolylineElement.h Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGTransform.idl Source/WebCore/svg/SVGDocument.idl Source/WebCore/svg/SVGColor.idl Source/WebCore/svg/SVGMetadataElement.idl Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005 Rob Buis 2006 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGStyledLocatableElement.cpp Source/WebCore/svg/SVGStyledLocatableElement.h Source/WebCore/svg/SVGNumberList.h Source/WebCore/svg/SVGStyledTransformableElement.cpp Source/WebCore/svg/SVGTSpanElement.h Source/WebCore/svg/SVGComponentTransferFunctionElement.h Source/WebCore/svg/SVGTRefElement.h Source/WebCore/svg/SVGURIReference.cpp Source/WebCore/svg/SVGNumberList.cpp Source/WebCore/svg/SVGStringList.cpp Source/WebCore/svg/SVGLengthList.cpp Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGTextPositioningElement.cpp Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGFEBlendElement.cpp Source/WebCore/svg/SVGFEMergeElement.cpp Source/WebCore/svg/SVGFEMergeElement.h Source/WebCore/svg/SVGFETurbulenceElement.cpp Source/WebCore/svg/SVGFEGaussianBlurElement.cpp Source/WebCore/svg/SVGFEBlendElement.h Source/WebCore/svg/SVGFECompositeElement.cpp Source/WebCore/svg/SVGFEGaussianBlurElement.h Source/WebCore/svg/SVGFEColorMatrixElement.cpp Source/WebCore/svg/SVGComponentTransferFunctionElement.cpp Source/WebCore/svg/SVGFECompositeElement.h Source/WebCore/svg/SVGFEColorMatrixElement.h Source/WebCore/svg/SVGFETurbulenceElement.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGPathSegLinetoVertical.h Source/WebCore/svg/SVGPathSegCurvetoQuadratic.h Source/WebCore/svg/SVGPathSegLinetoHorizontal.h Source/WebCore/svg/SVGPathSegCurvetoQuadraticSmooth.h Source/WebCore/svg/SVGPathSegCurvetoCubicSmooth.h Source/WebCore/svg/SVGPathSegCurvetoCubic.h Source/WebCore/svg/SVGPathSegArc.h Source/WebCore/svg/SVGPathSegMoveto.h Source/WebCore/svg/SVGPathSegLineto.h Copyright: 2004, 2005, 2006 Nikolas Zimmermann 2004, 2005, 2006, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGElementInstance.cpp Copyright: 2007, 2008 Nikolas Zimmermann 2010. 2011 Torch Mobile (Beijing) Co. Ltd. License: LGPL-2+ Files: Source/WebCore/svg/SVGRectElement.cpp Source/WebCore/svg/SVGEllipseElement.cpp Source/WebCore/svg/SVGCircleElement.cpp Source/WebCore/svg/SVGPolyElement.cpp Source/WebCore/svg/SVGPatternElement.h Source/WebCore/svg/SVGPolyElement.h Source/WebCore/svg/SVGPathElement.cpp Source/WebCore/svg/SVGLineElement.cpp Source/WebCore/svg/SVGCursorElement.cpp Source/WebCore/svg/SVGPathElement.h Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGPathTraversalStateBuilder.cpp Source/WebCore/svg/SVGPathSegList.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005 Rob Buis 2007 Eric Seidel 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGFEComponentTransferElement.cpp Source/WebCore/svg/SVGFETileElement.cpp Source/WebCore/svg/SVGFEComponentTransferElement.h Source/WebCore/svg/SVGFEOffsetElement.cpp Source/WebCore/svg/SVGFETileElement.h Source/WebCore/svg/SVGFEOffsetElement.h Source/WebCore/svg/SVGFEImageElement.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGPathTraversalStateBuilder.h Copyright: 2007 Eric Seidel 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGFEDiffuseLightingElement.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Oliver Hunt License: LGPL-2+ Files: Source/WebCore/svg/SVGTextElement.cpp Copyright: 2004, 2005, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGParserUtilities.h Copyright: 2002, 2003 The Karbon Developers 2006, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGTransformList.cpp Source/WebCore/svg/SVGTransformList.h Source/WebCore/svg/SVGExternalResourcesRequired.h Source/WebCore/svg/SVGTransform.h Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGRect.idl Source/WebCore/svg/SVGPoint.idl Source/WebCore/svg/SVGNumber.idl Source/WebCore/svg/SVGAngle.idl Source/WebCore/svg/SVGElement.idl Source/WebCore/svg/SVGMatrix.idl Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005 Rob Buis 2006 Samuel Weinig 2006 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGFELightElement.cpp Source/WebCore/svg/SVGFESpecularLightingElement.cpp Source/WebCore/svg/SVGFESpecularLightingElement.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2005 Oliver Hunt License: LGPL-2+ Files: Source/WebCore/svg/SVGViewElement.cpp Source/WebCore/svg/SVGViewElement.h Source/WebCore/svg/SVGScriptElement.cpp Source/WebCore/svg/SVGScriptElement.h Source/WebCore/svg/SVGExternalResourcesRequired.cpp Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGAnimateColorElement.h Source/WebCore/svg/SVGAnimateColorElement.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2007 Eric Seidel License: LGPL-2+ Files: Source/WebCore/svg/SVGLength.cpp Copyright: 2004, 2005, 2006 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGSVGElement.cpp Copyright: 2004, 2005, 2006 Nikolas Zimmermann 2004, 2005, 2006, 2007, 2008, 2010 Rob Buis 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGHKernElement.h Source/WebCore/svg/SVGFontFaceElement.h Copyright: 2007 Eric Seidel 2007 Nikolas Zimmermann 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGStopElement.h Source/WebCore/svg/SVGLangSpace.cpp Source/WebCore/svg/SVGClipPathElement.h Source/WebCore/svg/SVGGElement.h Source/WebCore/svg/SVGLangSpace.h Source/WebCore/svg/SVGGElement.cpp Copyright: 2004, 2005, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGPointList.h Source/WebCore/svg/SVGPointList.cpp Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGViewSpec.cpp Copyright: 2007, 2010 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGTransformable.cpp Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2007 Eric Seidel License: LGPL-2+ Files: Source/WebCore/svg/SVGFontElement.h Source/WebCore/svg/SVGFontElement.cpp Copyright: 2007 Eric Seidel 2007 Nikolas Zimmermann 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGTextContentElement.h Source/WebCore/svg/SVGTextElement.h Source/WebCore/svg/SVGTextPositioningElement.h Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGLinearGradientElement.cpp Source/WebCore/svg/SVGRadialGradientElement.cpp Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2008 Eric Seidel 2008 Dirk Schulze 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGPathSegListBuilder.h Source/WebCore/svg/SVGPathBuilder.h Source/WebCore/svg/SVGPathParser.cpp Source/WebCore/svg/SVGPathSegListBuilder.cpp Source/WebCore/svg/SVGPathParser.h Source/WebCore/svg/SVGPathConsumer.h Source/WebCore/svg/SVGPathBuilder.cpp Copyright: 2002, 2003 The Karbon Developers 2006 Alexander Kellett 2006, 2007 Rob Buis 2007, 2009 Apple Inc. 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGAnimateMotionElement.h Copyright: 2007 Eric Seidel 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGZoomAndPan.h Source/WebCore/svg/SVGTests.cpp Source/WebCore/svg/SVGStylable.h Source/WebCore/svg/SVGStyledTransformableElement.h Source/WebCore/svg/SVGZoomAndPan.cpp Source/WebCore/svg/SVGTransformable.h Source/WebCore/svg/SVGPreserveAspectRatio.h Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGAnimateElement.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGFEFuncAElement.h Source/WebCore/svg/SVGMetadataElement.cpp Source/WebCore/svg/SVGSetElement.h Source/WebCore/svg/SVGMetadataElement.h Source/WebCore/svg/SVGFEFuncBElement.h Source/WebCore/svg/SVGDescElement.h Source/WebCore/svg/SVGFEFuncRElement.h Source/WebCore/svg/SVGSetElement.cpp Source/WebCore/svg/SVGFEFuncGElement.h Source/WebCore/svg/SVGTransform.cpp Source/WebCore/svg/SVGDescElement.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGFEImageElement.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2010 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/svg/SVGParserUtilities.cpp Copyright: 2002, 2003 The Karbon Developers 2006 Alexander Kellett 2006, 2007 Rob Buis 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGFEDisplacementMapElement.cpp Source/WebCore/svg/SVGFEDisplacementMapElement.h Copyright: 2006 Oliver Hunt License: LGPL-2+ Files: Source/WebCore/svg/SVGFont.cpp Copyright: 2007, 2008 Nikolas Zimmermann 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGAngle.cpp Source/WebCore/svg/SVGAngle.h Copyright: 2004, 2005, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGPathSegClosePath.h Copyright: 2004, 2005, 2006 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGPathBlender.cpp Copyright: 2010, 2011. License: LGPL-2+ Files: Source/WebCore/svg/SVGFEFloodElement.h Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGFitToViewBox.cpp Source/WebCore/svg/SVGFitToViewBox.h Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007, 2010 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGTests.h Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2010 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGException.idl Copyright: 2007 Rob Buis 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGFontFaceElement.cpp Copyright: 2007 Eric Seidel 2007, 2008 Nikolas Zimmermann 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGDocumentExtensions.h Copyright: 2006 Apple Inc. 2006, 2008 Nikolas Zimmermann License: LGPL-2+ Files: Source/WebCore/svg/graphics/filters/SVGFEImage.cpp Source/WebCore/svg/graphics/filters/SVGFEImage.h Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2010 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/svg/graphics/filters/SVGFilter.cpp Copyright: 2009 Dirk Schulze 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGImageElement.cpp Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007, 2008, 2009 Rob Buis 2006 Alexander Kellett License: LGPL-2+ Files: Source/WebCore/svg/SVGFESpotLightElement.cpp Source/WebCore/svg/SVGFEDistantLightElement.h Source/WebCore/svg/SVGFEDistantLightElement.cpp Source/WebCore/svg/SVGFEPointLightElement.h Source/WebCore/svg/SVGFEPointLightElement.cpp Source/WebCore/svg/SVGFESpotLightElement.h Source/WebCore/svg/SVGFEDiffuseLightingElement.cpp Copyright: 2005 Oliver Hunt License: LGPL-2+ Files: Source/WebCore/svg/SVGElement.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2008 Rob Buis 2008 Apple Inc. 2008 Alp Toker 2009 Cameron McCormack License: LGPL-2+ Files: Source/WebCore/svg/SVGPathSeg.h Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGAnimateTransformElement.h Source/WebCore/svg/SVGAnimateTransformElement.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2007 Eric Seidel 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGColor.cpp Source/WebCore/svg/SVGColor.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2011. License: LGPL-2+ Files: Source/WebCore/svg/SVGStyleElement.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2006 Apple Inc. 2009 Cameron McCormack License: LGPL-2+ Files: Source/WebCore/svg/SVGStyledElement.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2007, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGTSpanElement.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2006, 2010 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGFilterElement.h Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2006 Samuel Weinig 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGAltGlyphElement.h Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGPreserveAspectRatio.cpp Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2010 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/svg/SVGTextPathElement.cpp Copyright: 2007 Nikolas Zimmermann 2010 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGSVGElement.idl Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2010 Rob Buis 2006 Samuel Weinig 2006 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGFEFloodElement.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2007, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGAnimationElement.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2007 Eric Seidel 2008 Apple Inc. 2008 Cameron McCormack License: LGPL-2+ Files: Source/WebCore/svg/SVGLocatable.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2007 Rob Buis 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGGlyphElement.h Copyright: 2007 Eric Seidel 2007 Nikolas Zimmermann 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGImageLoader.cpp Copyright: 2005, 2005 Alexander Kellett 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGGlyphMap.h Source/WebCore/svg/SVGHKernElement.idl Source/JavaScriptCore/runtime/Lookup.cpp Source/JavaScriptCore/runtime/RegExpMatchesArray.h Source/JavaScriptCore/wtf/RefCountedLeakCounter.h Source/JavaScriptCore/wtf/RefCountedLeakCounter.cpp Copyright: 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGZoomEvent.cpp Source/WebCore/svg/SVGZoomEvent.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005 Rob Buis 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/svg/SVGElementInstance.h Copyright: 2007, 2008 Nikolas Zimmermann 2011 Torch Mobile (Beijing) Co. Ltd. License: LGPL-2+ Files: Source/WebCore/svg/SVGTextContentElement.cpp Copyright: 2004, 2005, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007, 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGElement.h Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGImageLoader.h Copyright: 2006 Alexander Kellett License: LGPL-2+ Files: Source/WebCore/svg/SVGLength.idl Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005 Rob Buis 2006 Samuel Weinig 2006 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGAnimationElement.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2007 Eric Seidel 2008 Apple Inc. 2009 Cameron McCormack 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGStyleElement.h Source/WebCore/svg/SVGDocument.cpp Source/WebCore/svg/SVGDocument.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGFELightElement.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2005 Oliver Hunt License: LGPL-2+ Files: Source/WebCore/svg/SVGGlyphElement.cpp Copyright: 2007 Eric Seidel 2007, 2008 Nikolas Zimmermann 2008 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGGradientElement.cpp Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGURIReference.h Copyright: 2004, 2005, 2008, 2009 Nikolas Zimmermann 2004, 2005 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGPaint.h Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2006 Samuel Weinig 2011. License: LGPL-2+ Files: Source/WebCore/svg/SVGForeignObjectElement.cpp Copyright: 2006 Apple Inc. 2008 Nikolas Zimmermann License: LGPL-2+ Files: Source/WebCore/svg/SVGUseElement.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2009-2010. 2011 Torch Mobile (Beijing) Co. Ltd. License: LGPL-2+ Files: Source/WebCore/svg/SVGMarkerElement.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2009-2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGMaskElement.cpp Copyright: 2004, 2005, 2006, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2005 Alexander Kellett 2009 Dirk Schulze 2009-2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGLocatable.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2009 Google, Inc. 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGPatternElement.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGSVGElement.h Copyright: 2004, 2005, 2006 Nikolas Zimmermann 2004, 2005, 2006, 2007, 2010 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGStopElement.cpp Copyright: 2004, 2005, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGUseElement.h Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGFilterElement.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2006 Samuel Weinig 2009 Dirk Schulze 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGAElement.h Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005 Rob Buis 2007 Eric Seidel License: LGPL-2+ Files: Source/WebCore/svg/SVGPaint.cpp Copyright: 2004, 2005 Nikolas Zimmermann 2004, 2005, 2006, 2007 Rob Buis 2010-2011. License: LGPL-2+ Files: Source/WebCore/svg/SVGDocumentExtensions.cpp Copyright: 2006 Apple Inc. 2006 Nikolas Zimmermann 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGMarkerElement.h Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGForeignObjectElement.h Copyright: 2006 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGFilterPrimitiveStandardAttributes.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2009 Dirk Schulze License: LGPL-2+ Files: Source/WebCore/svg/SVGStyledElement.h Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005, 2007 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/SVGAnimateMotionElement.cpp Copyright: 2007 Eric Seidel 2007 Rob Buis 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGException.h Copyright: 2006 Samuel Weinig 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGHKernElement.cpp Copyright: 2007 Eric Seidel 2007, 2008 Nikolas Zimmermann 2008 Eric Seidel License: LGPL-2+ Files: Source/WebCore/svg/SVGFontFaceUriElement.cpp Copyright: 2007 Eric Seidel 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGMaskElement.h Copyright: 2005 Alexander Kellett License: LGPL-2+ Files: Source/WebCore/svg/SVGFilterPrimitiveStandardAttributes.h Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis License: LGPL-2+ Files: Source/WebCore/svg/properties/SVGAnimatedPropertyDescription.h Source/WebCore/svg/properties/SVGAnimatedPropertyMacros.h Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2004, 2005 Rob Buis 2010. License: LGPL-2+ Files: Source/WebCore/svg/properties/SVGPropertyTraits.h Copyright: 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann 2010. License: LGPL-2+ Files: Source/WebCore/svg/SVGAltGlyphElement.cpp Copyright: 2004, 2005, 2007 Nikolas Zimmermann 2004, 2005, 2006 Rob Buis 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/svg/SVGAElement.cpp Copyright: 2004, 2005, 2008 Nikolas Zimmermann 2004, 2005, 2007 Rob Buis 2007 Eric Seidel 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/ImageInputType.cpp Source/WebCore/html/FileInputType.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLAreaElement.idl Source/WebCore/html/HTMLBodyElement.idl Source/WebCore/html/HTMLImageElement.idl Copyright: 2006, 2009, 2010 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/HTMLCollection.h Source/WebCore/html/CollectionType.h Source/WebCore/html/HTMLCollection.cpp Source/WebCore/html/HTMLScriptElement.cpp Source/WebCore/html/HTMLFormCollection.h Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLUListElement.cpp Source/WebCore/html/HTMLParagraphElement.h Source/WebCore/html/HTMLOListElement.cpp Source/WebCore/html/HTMLFontElement.h Source/WebCore/html/HTMLDListElement.h Source/WebCore/html/HTMLModElement.h Source/WebCore/html/HTMLDirectoryElement.h Source/WebCore/html/HTMLMenuElement.cpp Source/WebCore/html/HTMLMenuElement.h Source/WebCore/html/HTMLOListElement.h Source/WebCore/html/HTMLLIElement.h Source/WebCore/html/HTMLQuoteElement.h Source/WebCore/html/HTMLHRElement.h Source/WebCore/html/HTMLDivElement.h Source/WebCore/html/HTMLUListElement.h Source/WebCore/html/HTMLPreElement.h Source/WebCore/html/HTMLDirectoryElement.cpp Source/WebCore/html/HTMLHeadingElement.h Source/WebCore/html/HTMLDListElement.cpp Copyright: 1999 Lars Knoll 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLBlockquoteElement.h Copyright: 1999 Lars Knoll 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLTextAreaElement.h Source/WebCore/html/HTMLLabelElement.cpp Source/WebCore/html/HTMLInputElement.h Source/WebCore/html/HTMLOptGroupElement.h Source/WebCore/html/HTMLButtonElement.h Source/WebCore/html/HTMLLabelElement.h Source/WebCore/html/HTMLMapElement.cpp Source/WebCore/html/HTMLImageLoader.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLIsIndexElement.h Source/WebCore/html/HTMLFieldSetElement.h Source/WebCore/html/HTMLKeygenElement.h Source/WebCore/html/HTMLIsIndexElement.cpp Source/WebCore/html/HTMLLegendElement.h Source/WebCore/html/HTMLFieldSetElement.cpp Source/WebCore/html/HTMLLegendElement.cpp Source/WebCore/html/HTMLKeygenElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLPreElement.cpp Source/WebCore/html/HTMLTitleElement.h Source/WebCore/html/HTMLHRElement.cpp Source/WebCore/html/HTMLParagraphElement.cpp Source/WebCore/html/HTMLTitleElement.cpp Source/WebCore/html/HTMLHeadingElement.cpp Source/WebCore/html/HTMLStyleElement.cpp Source/WebCore/html/HTMLDivElement.cpp Source/WebCore/html/HTMLMetaElement.h Source/WebCore/html/HTMLMetaElement.cpp Copyright: 1999 Lars Knoll 2003, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLBaseElement.h Source/WebCore/html/HTMLBlockquoteElement.cpp Copyright: 1999 Lars Knoll 2003, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLMarqueeElement.cpp Copyright: 1999 Lars Knoll 2003, 2007, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLAppletElement.h Source/WebCore/html/HTMLFrameElementBase.cpp Source/WebCore/html/HTMLFrameElementBase.h Source/WebCore/html/HTMLEmbedElement.h Source/WebCore/html/HTMLIFrameElement.h Copyright: 1999 Lars Knoll 2004, 2006, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLTableCellElement.cpp Source/WebCore/html/HTMLTableCellElement.h Source/WebCore/html/HTMLTableSectionElement.cpp Source/WebCore/html/HTMLTablePartElement.h Source/WebCore/html/HTMLTableColElement.cpp Source/WebCore/html/HTMLTableColElement.h Source/WebCore/html/HTMLTableCaptionElement.h Source/WebCore/html/HTMLTableCaptionElement.cpp Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLSelectElement.idl Source/WebCore/html/HTMLFormElement.idl Source/WebCore/html/HTMLLabelElement.idl Source/WebCore/html/HTMLStyleElement.idl Source/WebCore/html/HTMLMapElement.idl Source/WebCore/html/HTMLTextAreaElement.idl Source/WebCore/html/HTMLButtonElement.idl Source/WebCore/html/HTMLLegendElement.idl Source/WebCore/html/HTMLLinkElement.idl Source/WebCore/html/HTMLInputElement.idl Copyright: 2006, 2010 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/HTMLInputElement.cpp Source/WebCore/html/InputType.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2007 Samuel Weinig 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLPlugInImageElement.cpp Copyright: 2008, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLOptionElement.h Source/WebCore/html/HTMLOptionElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2010 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/html/LabelsNodeList.h Copyright: 1999 Lars Knoll 2004, 2007 Apple Inc. 2010 Nokia Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008 Apple Inc. 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: LGPL-2+ Files: Source/WebCore/html/HTMLFormCollection.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/ValidityState.idl Copyright: 2009 Michelangelo De Simone License: LGPL-2+ Files: Source/WebCore/html/HTMLHeadElement.h Source/WebCore/html/HTMLParamElement.h Source/WebCore/html/HTMLHeadElement.cpp Source/WebCore/html/HTMLHtmlElement.cpp Source/WebCore/html/HTMLHtmlElement.h Copyright: 1999 Lars Knoll 2004, 2006, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLTableRowElement.cpp Source/WebCore/html/HTMLTableRowElement.h Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2007, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLBaseFontElement.h Source/WebCore/html/HTMLBaseFontElement.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLAppletElement.idl Source/WebCore/html/HTMLAnchorElement.idl Source/WebCore/html/HTMLIFrameElement.idl Source/WebCore/html/HTMLObjectElement.idl Copyright: 2006, 2007, 2009, 2010 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/HTMLBaseFontElement.idl Source/WebCore/html/HTMLBaseElement.idl Source/WebCore/html/HTMLBlockquoteElement.idl Copyright: 2006, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLLinkElement.h Copyright: 1999 Lars Knoll 2003, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLBodyElement.cpp Copyright: 1999 Lars Knoll 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/FormDataList.h Source/WebCore/html/FormDataList.cpp Source/JavaScriptCore/wtf/HashCountedSet.h Source/JavaScriptCore/wtf/HashFunctions.h Source/JavaScriptCore/wtf/ListRefPtr.h Copyright: 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLNameCollection.h Source/WebCore/html/HTMLNameCollection.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLFontElement.cpp Copyright: 1999 Lars Knoll 2003, 2006, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLSelectElement.cpp Source/WebCore/html/HTMLSelectElement.h Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies). 1999 Lars Knoll 2004, 2005, 2006, 2007, 2009, 2010 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLNoScriptElement.cpp Source/WebCore/html/HTMLNoScriptElement.h Copyright: 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLModElement.cpp Source/WebCore/html/HTMLQuoteElement.cpp Copyright: 1999 Lars Knoll 2003, 2006, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLEmbedElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2008, 2009, 2011 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/html/HTMLTableRowElement.idl Copyright: 2006, 2007, 2010 Apple Inc. ALl rights reserved. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/BaseTextInputType.cpp Source/WebCore/html/EmailInputType.cpp Copyright: 2009 Michelangelo De Simone 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLBaseElement.cpp Copyright: 1999 Lars Knoll 2003, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLStyleElement.h Copyright: 1999 Lars Knoll 2003, 2010 Apple Inc. ALl rights reserved. License: LGPL-2+ Files: Source/WebCore/html/HTMLPreElement.idl Copyright: 2006, 2010 Apple Inc. All right reserved. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/LabelsNodeList.cpp Copyright: 1999 Lars Knoll 2004, 2007, 2008 Apple Inc. 2010 Nokia Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLBRElement.h Source/WebCore/html/HTMLBRElement.cpp Copyright: 1999 Lars Knoll 2003, 2006, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLButtonElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2010 Apple Inc. 2007 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/HTMLFrameSetElement.cpp Source/WebCore/html/HTMLFrameSetElement.h Source/WebCore/html/HTMLBodyElement.h Copyright: 1999 Lars Knoll 2004, 2006, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLFrameSetElement.idl Copyright: 2006, 2007, 2009, 2010 Apple Inc. All rights reserve 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/HTMLIFrameElement.cpp Copyright: 1999 Lars Knoll 2004, 2006, 2008, 2009 Apple Inc. 2009 Ericsson AB. License: LGPL-2+ Files: Source/WebCore/html/HTMLAppletElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2008, 2009 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/html/HTMLObjectElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebCore/html/HTMLImageLoader.h Copyright: 1999 Lars Knoll 2004 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLTextAreaElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. 2007 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/HTMLPlugInElement.h Source/WebCore/html/HTMLObjectElement.h Source/WebCore/html/HTMLDocument.h Copyright: 1999 Lars Knoll 2004, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLTableElement.h Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLTableElement.cpp Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/ValidityState.h Source/WebCore/html/ValidityState.cpp Copyright: 2009 Michelangelo De Simone 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLOptGroupElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLMapElement.h Copyright: 1999 Lars Knoll 2004, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLAnchorElement.h Copyright: 1999 Lars Knoll 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLMarqueeElement.h Copyright: 1999 Lars Knoll 2007, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLDocument.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. 2002 Netscape Communications Corporation. License: LGPL-2+ Files: Source/WebCore/html/HTMLMarqueeElement.idl Copyright: 2007 Apple Inc. All rights reserved License: LGPL-2+ Files: Source/WebCore/html/HTMLAreaElement.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2009, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLPlugInImageElement.h Copyright: 2008, 2009, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLImageElement.h Copyright: 1999 Lars Knoll 2004, 2008, 2010 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLOptionElement.idl Copyright: 2006, 2007, 2010 Apple, Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/html/HTMLLIElement.cpp Copyright: 1999 Lars Knoll 2006, 2007, 2010 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLAreaElement.h Copyright: 1999 Lars Knoll 2004, 2008, 2009, 2011 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLTableSectionElement.h Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006, 2007 Apple Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLTablePartElement.cpp Copyright: 1997 Martin Jones 2003, 2004, 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/WebCore/html/HTMLLinkElement.cpp Copyright: 1999 Lars Knoll 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2009 Rob Buis License: LGPL-2+ Files: Source/WebCore/html/RadioInputType.cpp Copyright: 2005, 2011 Apple Inc. 2010 Google Inc. License: LGPL-2+ Files: Source/WebCore/xml/XMLHttpRequest.cpp Copyright: 2004, 2006, 2008 Apple Inc. 2005-2007 Alexey Proskuryakov 2007, 2008 Julien Chaffraix 2008 David Levin License: LGPL-2+ Files: Source/WebCore/xml/XMLHttpRequest.h Copyright: 2003, 2006, 2008 Apple Inc. 2005, 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/xml/XSLTProcessor.h Copyright: 2004, 2007, 2008 Apple, Inc. License: LGPL-2+ Files: Source/WebCore/xml/XMLSerializer.cpp Copyright: 2003, 2006 Apple Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/xml/XSLTProcessor.cpp Source/WebCore/xml/XSLTProcessorLibxslt.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Apple, Inc. 2005, 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/WebCore/xml/XMLSerializer.idl Copyright: 2006 Apple Computer, Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/xml/XMLSerializer.h Copyright: 2003, 2006 Apple Computer, Inc. 2006 Samuel Weinig License: LGPL-2+ Files: Source/WebCore/config.h Copyright: 2004, 2005, 2006 Apple Inc. 2009 Google Inc. License: LGPL-2+ Files: Source/JavaScriptCore/parser/Parser.cpp Source/JavaScriptCore/parser/Parser.h Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/parser/Nodes.h Copyright: 1999-2000 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2007 Cameron Zwarich 2007 Maks Orlovich 2007 Eric Seidel License: LGPL-2+ Files: Source/JavaScriptCore/parser/Nodes.cpp Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp Copyright: 1999-2002 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2007 Cameron Zwarich 2007 Maks Orlovich 2007 Eric Seidel License: LGPL-2+ Files: Source/JavaScriptCore/parser/Lexer.h Copyright: 1999-2000 Harri Porten 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2010 Zoltan Herczeg License: LGPL-2+ Files: Source/JavaScriptCore/parser/NodeConstructors.h Copyright: 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/parser/Lexer.cpp Copyright: 1999-2000 Harri Porten 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. 2007 Cameron Zwarich 2010 Zoltan Herczeg 2012 Mathias Bynens License: LGPL-2+ Files: Source/JavaScriptCore/runtime/Error.cpp Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2008 Apple Inc. 2007 Eric Seidel License: LGPL-2+ Files: Source/JavaScriptCore/runtime/FunctionConstructor.h Source/JavaScriptCore/runtime/FunctionPrototype.h Copyright: 1999-2000 Harri Porten 2006, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/NativeErrorConstructor.h Source/JavaScriptCore/runtime/MathObject.h Source/JavaScriptCore/runtime/DateInstance.h Source/JavaScriptCore/runtime/ErrorInstance.h Source/JavaScriptCore/runtime/NumberConstructor.h Source/JavaScriptCore/runtime/ObjectPrototype.cpp Source/JavaScriptCore/runtime/NumberPrototype.h Source/JavaScriptCore/runtime/BooleanPrototype.h Source/JavaScriptCore/runtime/ObjectPrototype.h Source/JavaScriptCore/runtime/DatePrototype.h Source/JavaScriptCore/runtime/NativeErrorPrototype.h Source/JavaScriptCore/runtime/NumberObject.h Source/JavaScriptCore/runtime/BooleanConstructor.h Source/JavaScriptCore/runtime/BooleanObject.h Source/JavaScriptCore/runtime/ObjectConstructor.cpp Source/JavaScriptCore/runtime/ErrorPrototype.h Source/JavaScriptCore/runtime/ObjectConstructor.h Source/JavaScriptCore/runtime/ErrorConstructor.h Source/JavaScriptCore/runtime/DateConstructor.h Source/JavaScriptCore/runtime/Operations.cpp Copyright: 1999-2000 Harri Porten 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSAPIValueWrapper.h Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/DateConversion.cpp Copyright: 1999-2000 Harri Porten 2006, 2007 Apple Inc. 2009 Google Inc. 1998 Netscape Communications Corporation License: LGPL-2+ Files: Source/JavaScriptCore/runtime/UString.cpp Copyright: 1999-2000 Harri Porten 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2007 Cameron Zwarich 2009 Google Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/ArrayConstructor.cpp Copyright: 1999-2000 Harri Porten 2003, 2007, 2008 Apple Inc. 2003 Peter Kelly 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/JavaScriptCore/runtime/StringPrototype.h Source/JavaScriptCore/runtime/StringConstructor.h Source/JavaScriptCore/runtime/StringObjectThatMasqueradesAsUndefined.h Source/JavaScriptCore/runtime/ArrayConstructor.h Source/JavaScriptCore/runtime/StringObject.h Source/JavaScriptCore/runtime/MathObject.cpp Copyright: 1999-2000 Harri Porten 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/GetterSetter.h Source/JavaScriptCore/runtime/JSObject.h Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSCell.h Source/JavaScriptCore/runtime/JSValue.h Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSFunction.h Source/JavaScriptCore/runtime/Arguments.h Copyright: 1999-2000 Harri Porten 2003, 2006, 2007, 2008, 2009 Apple Inc. 2007 Cameron Zwarich 2007 Maks Orlovich License: LGPL-2+ Files: Source/JavaScriptCore/runtime/BooleanObject.cpp Source/JavaScriptCore/runtime/ErrorConstructor.cpp Source/JavaScriptCore/runtime/BooleanConstructor.cpp Source/JavaScriptCore/runtime/ErrorInstance.cpp Source/JavaScriptCore/runtime/ErrorPrototype.cpp Source/JavaScriptCore/runtime/BooleanPrototype.cpp Source/JavaScriptCore/runtime/NativeErrorPrototype.cpp Source/JavaScriptCore/runtime/NativeErrorConstructor.cpp Copyright: 1999-2000 Harri Porten 2003, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/UString.h Copyright: 1999-2000 Harri Porten 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2009 Google Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/DatePrototype.cpp Copyright: 1999-2000 Harri Porten 2004, 2005, 2006, 2007, 2008 Apple Inc. 2008, 2009 Torch Mobile, Inc. 2010 Torch Mobile (Beijing) Co. Ltd. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/Lookup.h Copyright: 1999-2000 Harri Porten 2003, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/RegExpConstructor.h Source/JavaScriptCore/runtime/RegExpPrototype.cpp Source/JavaScriptCore/runtime/RegExpObject.h Source/JavaScriptCore/runtime/RegExpObject.cpp Source/JavaScriptCore/runtime/RegExpPrototype.h Copyright: 1999-2000 Harri Porten 2003, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/GetterSetter.cpp Copyright: 1999-2002 Harri Porten 2001 Peter Kelly 2004, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/Operations.h Copyright: 1999-2000 Harri Porten 2002, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/InternalFunction.h Copyright: 1999-2000 Harri Porten 2003, 2006, 2007, 2008 Apple Inc. 2007 Cameron Zwarich 2007 Maks Orlovich License: LGPL-2+ Files: Source/JavaScriptCore/runtime/ArrayPrototype.h Copyright: 1999-2000 Harri Porten 2007 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSFunction.cpp Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.cpp Source/JavaScriptCore/runtime/Arguments.cpp Copyright: 1999-2002 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2007 Cameron Zwarich 2007 Maks Orlovich License: LGPL-2+ Files: Source/JavaScriptCore/runtime/FunctionPrototype.cpp Copyright: 1999-2001 Harri Porten 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/ScopeChain.h Copyright: 2003, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSGlobalObjectFunctions.h Copyright: 1999-2000 Harri Porten 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2007 Cameron Zwarich 2007 Maks Orlovich License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSCell.cpp Source/JavaScriptCore/runtime/JSValue.cpp Source/JavaScriptCore/interpreter/CallFrame.h Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSLock.h Copyright: 2005, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/PropertySlot.h Source/JavaScriptCore/wtf/AlwaysInline.h Copyright: 2005, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/ClassInfo.h Source/JavaScriptCore/runtime/JSString.h Source/JavaScriptCore/runtime/Error.h Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/RegExpConstructor.cpp Copyright: 1999-2000 Harri Porten 2003, 2007, 2008 Apple Inc. 2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSArray.cpp Copyright: 1999-2000 Harri Porten 2003, 2007, 2008, 2009 Apple Inc. 2003 Peter Kelly 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSArray.h Copyright: 1999-2000 Harri Porten 2003, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/RegExp.cpp Copyright: 1999-2001, 2004 Harri Porten 2007, 2008 Apple Inc. 2009 Torch Mobile, Inc. 2010 Peter Varga , University of Szeged License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSAPIValueWrapper.cpp Source/JavaScriptCore/runtime/JSString.cpp Source/JavaScriptCore/runtime/InternalFunction.cpp Copyright: 1999-2002 Harri Porten 2001 Peter Kelly 2004, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/PropertySlot.cpp Source/JavaScriptCore/runtime/JSLock.cpp Copyright: 2005, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/RegExp.h Copyright: 1999-2000 Harri Porten 2007, 2008, 2009 Apple Inc. 2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSObject.cpp Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2008, 2009 Apple Inc. 2007 Eric Seidel License: LGPL-2+ Files: Source/JavaScriptCore/runtime/CommonIdentifiers.cpp Source/JavaScriptCore/runtime/CommonIdentifiers.h Copyright: 2003, 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/NumberPrototype.cpp Source/JavaScriptCore/runtime/NumberObject.cpp Source/JavaScriptCore/runtime/NumberConstructor.cpp Copyright: 1999-2000,2003 Harri Porten 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/ArgList.h Copyright: 1999-2001 Harri Porten 2003, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/Identifier.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/ArrayPrototype.cpp Copyright: 1999-2000 Harri Porten 2003, 2007, 2008, 2009, 2011 Apple Inc. 2003 Peter Kelly 2006 Alexey Proskuryakov License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSGlobalObject.h Copyright: 2007 Eric Seidel 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/Completion.h Source/JavaScriptCore/runtime/Completion.cpp Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2003, 2007 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/StringConstructor.cpp Source/JavaScriptCore/runtime/StringObject.cpp Copyright: 1999-2001 Harri Porten 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/ScopeChainMark.h Copyright: 2003, 2006, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSWrapperObject.h Copyright: 2006 Maks Orlovich 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/JSWrapperObject.cpp Copyright: 2006 Maks Orlovich 2006, 2009 Apple, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/ArgList.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/FunctionConstructor.cpp Copyright: 1999-2001 Harri Porten 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/Protect.h Copyright: 2004, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/Identifier.h Copyright: 2003, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/runtime/StringPrototype.cpp Copyright: 1999-2001 Harri Porten 2004, 2005, 2006, 2007, 2008 Apple Inc. 2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/jsc.cpp Copyright: 1999-2000 Harri Porten 2004, 2005, 2006, 2007, 2008 Apple Inc. 2006 Bjoern Graf License: LGPL-2+ Files: Source/JavaScriptCore/create_jit_stubs Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies) 2010 Patrick Gansterer License: LGPL-2+ Files: Source/JavaScriptCore/debugger/Debugger.cpp Copyright: 2008 Apple Inc. 1999-2001 Harri Porten 2001 Peter Kelly License: LGPL-2+ Files: Source/JavaScriptCore/debugger/Debugger.h Copyright: 1999-2001 Harri Porten 2001 Peter Kelly 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/os-win32/stdint.h Source/JavaScriptCore/os-win32/stdbool.h Copyright: 2005, 2006 Apple Computer, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/os-win32/WinMain.cpp Copyright: 2009 Patrick Gansterer License: LGPL-2+ Files: Source/JavaScriptCore/wtf/ThreadingWin.cpp Copyright: 2007, 2008 Apple Inc. 2009 Google Inc. 2009 Torch Mobile, Inc. 1998 John E. Bossom 1999,2005 Pthreads-win32 contributors License: LGPL-2+ Files: Source/JavaScriptCore/wtf/StackBounds.cpp Source/JavaScriptCore/heap/Heap.cpp Source/JavaScriptCore/heap/MarkedSpace.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2007 Eric Seidel License: LGPL-2+ Files: Source/JavaScriptCore/wtf/url/src/URLParser.h Source/JavaScriptCore/wtf/url/src/URLSegments.cpp Copyright: 1998 Netscape Communications Corporation. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/TypeTraits.cpp Source/JavaScriptCore/wtf/TypeTraits.h Copyright: 2006, 2007, 2008 Apple Inc. 2009, 2010 Google Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/RefPtr.h Source/JavaScriptCore/wtf/PassRefPtr.h Copyright: 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/HashMap.h Source/JavaScriptCore/wtf/HashSet.h Source/JavaScriptCore/wtf/HashTraits.h Source/JavaScriptCore/wtf/Vector.h Source/JavaScriptCore/wtf/Alignment.h Source/JavaScriptCore/wtf/RefPtrHashMap.h Copyright: 2005, 2006, 2007, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/unicode/brew/UnicodeBrew.h Copyright: 2006 George Staikos 2006 Alexey Proskuryakov 2007 Apple Computer, Inc. 2007-2009 Torch Mobile, Inc. 2010 Company 100, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/unicode/brew/UnicodeBrew.cpp Copyright: 2006 George Staikos 2006 Alexey Proskuryakov 2007-2009 Torch Mobile, Inc. 2010 Company 100, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/unicode/qt4/UnicodeQt4.h Source/JavaScriptCore/wtf/unicode/icu/UnicodeIcu.h Copyright: 2006 George Staikos 2006 Alexey Proskuryakov 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.h Copyright: 2006 George Staikos 2006 Alexey Proskuryakov 2007 Apple Computer, Inc. 2008 Jürg Billeter 2008 Dominik Röttsches License: LGPL-2+ Files: Source/JavaScriptCore/wtf/unicode/glib/UnicodeGLib.cpp Copyright: 2008 Jürg Billeter 2008 Dominik Röttsches 2010 Igalia S.L. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/unicode/wince/UnicodeWinCE.cpp Copyright: 2006 George Staikos 2006 Alexey Proskuryakov 2007-2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/unicode/wince/UnicodeWinCE.h Copyright: 2006 George Staikos 2006 Alexey Proskuryakov 2007 Apple Computer, Inc. 2007-2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/unicode/Unicode.h Copyright: 2006 George Staikos 2006, 2008, 2009 Apple Inc. 2007-2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/HashTable.h Copyright: 2005, 2006, 2007, 2008 Apple Inc. 2008 David Levin License: LGPL-2+ Files: Source/JavaScriptCore/wtf/StringHasher.h Copyright: 2005, 2006, 2008, 2010 Apple Inc. 2010 Patrick Gansterer License: LGPL-2+ Files: Source/JavaScriptCore/wtf/RetainPtr.h Copyright: 2005, 2006, 2007, 2008, 2010 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/gobject/GRefPtr.h Copyright: 2005, 2006, 2007, 2008 Apple Inc. 2008 Collabora Ltd. 2009 Martin Robinson License: LGPL-2+ Files: Source/JavaScriptCore/wtf/gobject/GRefPtr.cpp Copyright: 2009 Martin Robinson License: LGPL-2+ Files: Source/JavaScriptCore/wtf/Forward.h Copyright: 2006, 2009, 2011 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/dtoa.h Copyright: 2003, 2008 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/text/AtomicString.cpp Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. 2010 Patrick Gansterer License: LGPL-2+ Files: Source/JavaScriptCore/wtf/text/StringImpl.cpp Copyright: 1999 Lars Knoll 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2006 Andrew Wellington License: LGPL-2+ Files: Source/JavaScriptCore/wtf/text/WTFString.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. 2007-2009 Torch Mobile, Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/text/StringHash.h Copyright: 2006, 2007, 2008 Apple Inc.2009. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/text/StringImpl.h Copyright: 1999 Lars Knoll 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2009 Google Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/wince/MemoryManager.cpp Source/JavaScriptCore/wtf/wince/MemoryManager.h Copyright: 2008-2009 Torch Mobile Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/wince/FastMallocWinCE.h Copyright: 2005, 2006, 2007, 2008 Apple Inc. 2007-2009 Torch Mobile, Inc. All rights reserved License: LGPL-2+ Files: Source/JavaScriptCore/wtf/ThreadSpecificWin.cpp Copyright: 2009 Jian Li License: LGPL-2+ Files: Source/JavaScriptCore/wtf/OwnFastMallocPtr.h Copyright: 2006, 2007 Apple Inc. 2009 Google Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/HexNumber.h Copyright: 2011 Research In Motion Limited. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/FastMalloc.h Copyright: 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/HashTable.cpp Copyright: 2005 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/wtf/DateMath.cpp Copyright: 1999-2000 Harri Porten 2006, 2007 Apple Inc. 2009 Google Inc. 2007-2009 Torch Mobile, Inc. 2010 &yet, LLC. 1998 Netscape Communications Corporation 2006-2008 the V8 project authors. License: LGPL-2+ Files: Source/JavaScriptCore/heap/MarkedSpace.h Source/JavaScriptCore/heap/MarkedBlock.h Copyright: 1999-2000 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/heap/Heap.h Source/JavaScriptCore/heap/MachineStackMarker.h Copyright: 1999-2000 Harri Porten 2001 Peter Kelly 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: LGPL-2+ Files: Source/JavaScriptCore/heap/MachineStackMarker.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2007 Eric Seidel 2009 Acision BV. License: LGPL-2+ Files: Source/WebKit/wince/WebCoreSupport/EditorClientWinCE.cpp Copyright: 2007 Alp Toker 2008 Nuanti Ltd. 2008 INdT - Instituto Nokia de Tecnologia 2009-2010 ProFUSION embedded systems 2009-2010 Samsung Electronics 2010 Patrick Gansterer License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebframe_p.h Source/WebKit/qt/Api/qwebpage.h Source/WebKit/qt/Api/qwebview.h Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2007 Staikos Computing Services Inc. License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebframe.h Source/WebKit/qt/Api/qwebframe.cpp Copyright: 2008,2009 Nokia Corporation and/or its subsidiary(-ies) 2007 Staikos Computing Services Inc. License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebscriptworld_p.h Source/WebKit/qt/Api/qwebscriptworld.h Source/WebKit/qt/Api/qwebscriptworld.cpp Copyright: 2010 Robert Hogan License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebhistoryinterface.cpp Copyright: 2007 Staikos Computing Services Inc. License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebhistoryinterface.h Copyright: 2007 Staikos Computing Services, Inc. License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebkitversion.cpp Source/WebKit/qt/Api/qwebkitversion.h Copyright: 2009 Robert Hogan License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebpage.cpp Copyright: 2008, 2009 Nokia Corporation and/or its subsidiary(-ies) 2007 Staikos Computing Services Inc. 2007 Apple Inc. License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebinspector_p.h Copyright: 2008, 2009 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebKit/qt/Api/qgraphicswebview.cpp Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies) 2009 Girish Ramakrishnan License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebpage_p.h Copyright: 2008, 2009 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebKit/qt/Api/qwebview.cpp Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther 2009 Girish Ramakrishnan License: LGPL-2+ Files: Source/WebKit/qt/tests/qwebframe/tst_qwebframe.cpp Copyright: 2008,2009 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebKit/qt/tests/qwebview/tst_qwebview.cpp Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies) 2009 Torch Mobile Inc. 2009 Girish Ramakrishnan License: LGPL-2+ Files: Source/WebKit/qt/tests/qwebhistory/tst_qwebhistory.cpp Source/WebKit/qt/tests/qwebhistoryinterface/tst_qwebhistoryinterface.cpp Copyright: 2008 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebKit/qt/tests/benchmarks/loading/tst_loading.cpp Source/WebKit/qt/tests/benchmarks/painting/tst_painting.cpp Copyright: 2009 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebKit/qt/tests/qwebpage/tst_qwebpage.cpp Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) 2009 Girish Ramakrishnan 2010 Holger Hans Peter Freyther License: LGPL-2+ Files: Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.h Source/WebKit/qt/WebCoreSupport/DumpRenderTreeSupportQt.cpp Copyright: 2010 Robert Hogan 2008,2009,2010 Nokia Corporation and/or its subsidiary(-ies) 2007 Staikos Computing Services Inc. 2007 Apple Inc. License: LGPL-2+ Files: Source/WebKit/qt/WebCoreSupport/SearchPopupMenuQt.cpp Copyright: 2006 Zack Rusin 2010 Nokia Corporation and/or its subsidiary(-ies). License: LGPL-2+ Files: Source/WebKit/qt/WebCoreSupport/PopupMenuQt.cpp Copyright: 2008, 2009, 2010 Nokia Corporation and/or its subsidiary(-ies) 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com License: LGPL-2+ Files: Source/WebKit/qt/WebCoreSupport/EditCommandQt.cpp Source/WebKit/qt/WebCoreSupport/EditCommandQt.h Copyright: 2007 Staikos Computing Services Inc. License: LGPL-2+ Files: Source/WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp Copyright: 2010 Girish Ramakrishnan 2009 Nokia Corporation and/or its subsidiary(-ies) License: LGPL-2+ Files: Source/WebKit2/UIProcess/gtk/WebFullScreenManagerProxyGtk.cpp Source/WebKit2/WebProcess/FullScreen/gtk/WebFullScreenManagerGtk.cpp Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebEditorClientGtk.cpp Copyright: 2011 Igalia S.L. License: LGPL-2+ Files: Source/WebKit2/WebProcess/WebCoreSupport/WebPopupMenu.cpp Source/WebKit2/WebProcess/WebCoreSupport/WebPopupMenu.h Source/WebKit2/WebProcess/WebPage/WebContextMenu.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies). 2010 Apple Inc. License: LGPL-2+ Files: Source/WebKit2/WebProcess/WebCoreSupport/WebSearchPopupMenu.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies). 2010, 2011 Apple Inc. License: LGPL-2+ Files: WebKitLibraries/win/include/WebKitSystemInterface/WebKitSystemInterface.h Source/WebCore/bindings/js/JSStyleSheetCustom.cpp Source/WebCore/bindings/js/JSHTMLDocumentCustom.cpp Source/WebCore/bindings/js/JSNodeFilterCustom.cpp Source/WebCore/bindings/js/JSNamedNodeMapCustom.cpp Source/WebCore/bindings/js/JSCSSStyleDeclarationCustom.cpp Source/WebCore/platform/graphics/mac/ComplexTextControllerCoreText.cpp Source/WebCore/platform/qt/DragDataQt.cpp Source/WebCore/html/FTPDirectoryDocument.h Copyright: 2007, 2008, 2009 Apple Inc. License: BSD-2-clause Files: WebKitLibraries/win/tools/scripts/auto-version.sh Source/WebCore/page/DragController.h Source/WebCore/bindings/js/JSStyleSheetListCustom.cpp Source/WebCore/platform/mac/DragImageMac.mm Source/WebCore/html/TimeRanges.h Copyright: 2007, 2009 Apple Inc. License: BSD-2-clause Files: Tools/QtTestBrowser/utils.cpp Tools/QtTestBrowser/locationedit.h Tools/QtTestBrowser/fpstimer.cpp Tools/QtTestBrowser/fpstimer.h Tools/QtTestBrowser/utils.h Source/WebCore/bindings/scripts/test/TestMediaQueryListListener.idl Source/WebCore/dom/CustomEvent.idl Source/WebCore/dom/CustomEvent.cpp Source/WebCore/dom/CustomEvent.h Source/WebCore/css/themeQtNoListboxes.css Source/WebKit/qt/WebCoreSupport/GeolocationClientQt.cpp Source/WebKit/qt/WebCoreSupport/GeolocationClientQt.h Source/WebKit2/UIProcess/API/C/qt/WKNativeEvent.h Source/WebKit2/UIProcess/TiledDrawingAreaProxy.cpp Source/WebKit2/UIProcess/TiledDrawingAreaProxy.h Source/WebKit2/UIProcess/TiledDrawingAreaTile.h Source/WebKit2/UIProcess/qt/TiledDrawingAreaProxyQt.cpp Source/WebKit2/UIProcess/qt/TiledDrawingAreaTileQt.cpp Source/WebKit2/WebProcess/WebPage/TiledDrawingArea.cpp Source/WebKit2/WebProcess/WebPage/TiledDrawingArea.h Source/WebKit2/WebProcess/WebPage/qt/TiledDrawingAreaQt.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Tools/QtTestBrowser/locationedit.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) 2011 Andreas Kling License: BSD-2-clause Files: Tools/QtTestBrowser/webinspector.h Copyright: 2009-2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Tools/QtTestBrowser/webpage.cpp Copyright: 2009-2010 Nokia Corporation and/or its subsidiary(-ies) 2009 Girish Ramakrishnan 2006 George Staikos 2006 Dirk Mueller 2006 Zack Rusin 2006 Simon Hausmann License: BSD-2-clause Files: Tools/QtTestBrowser/launcherwindow.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) 2011 University of Szeged 2011 Kristof Kosztyo 2009 Girish Ramakrishnan 2006 George Staikos 2006 Dirk Mueller 2006 Zack Rusin 2006 Simon Hausmann License: BSD-2-clause Files: Tools/QtTestBrowser/mainwindow.h Tools/QtTestBrowser/webview.h Tools/QtTestBrowser/mainwindow.cpp Tools/QtTestBrowser/webpage.h Tools/QtTestBrowser/webview.cpp Tools/QtTestBrowser/main.cpp Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies) 2009 Girish Ramakrishnan 2006 George Staikos 2006 Dirk Mueller 2006 Zack Rusin 2006 Simon Hausmann License: BSD-2-clause Files: Tools/QtTestBrowser/urlloader.h Tools/QtTestBrowser/urlloader.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) 2009 University of Szeged License: BSD-2-clause Files: Tools/QtTestBrowser/launcherwindow.h Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies) 2009 Girish Ramakrishnan 2006 George Staikos 2006 Dirk Mueller 2006 Zack Rusin 2006 Simon Hausmann License: BSD-2-clause Files: Source/WebCore/page/MediaStreamFrameController.cpp Source/WebCore/page/NavigatorUserMediaError.h Source/WebCore/page/NavigatorUserMediaErrorCallback.h Source/WebCore/page/MediaStreamFrameController.h Source/WebCore/page/MediaStreamController.h Source/WebCore/page/MediaStreamClient.h Source/WebCore/page/NavigatorUserMediaSuccessCallback.idl Source/WebCore/page/NavigatorUserMediaErrorCallback.idl Source/WebCore/page/NavigatorUserMediaError.idl Source/WebCore/page/FrameActionScheduler.cpp Source/WebCore/page/PageSerializer.h Source/WebCore/page/NavigatorUserMediaSuccessCallback.h Source/WebCore/page/FrameActionScheduler.h Source/WebCore/page/MediaStreamController.cpp Source/WebCore/bindings/js/JSDOMImplementationCustom.cpp Source/WebCore/bindings/scripts/test/TestSerializedScriptValueInterface.idl Source/WebCore/dom/ScriptedAnimationController.cpp Source/WebCore/dom/TreeScope.cpp Source/WebCore/dom/TreeScope.h Source/WebCore/dom/ScriptedAnimationController.h Source/WebCore/platform/leveldb/LevelDBDatabase.h Source/WebCore/platform/leveldb/LevelDBDatabase.cpp Source/WebCore/platform/leveldb/LevelDBSlice.h Source/WebCore/platform/leveldb/LevelDBComparator.h Source/WebCore/platform/leveldb/LevelDBIterator.h Source/WebCore/platform/leveldb/LevelDBIterator.cpp Source/WebCore/platform/graphics/gpu/LoopBlinnPathProcessor.cpp Source/WebCore/platform/graphics/gpu/LoopBlinnShader.h Source/WebCore/platform/graphics/gpu/LoopBlinnSolidFillShader.cpp Source/WebCore/platform/graphics/gpu/LoopBlinnPathCache.h Source/WebCore/platform/graphics/gpu/LoopBlinnShader.cpp Source/WebCore/platform/graphics/gpu/LoopBlinnPathCache.cpp Source/WebCore/platform/graphics/gpu/LoopBlinnSolidFillShader.h Source/WebCore/platform/graphics/gpu/LoopBlinnPathProcessor.h Source/WebCore/platform/graphics/GraphicsTypes3D.h Source/WebCore/platform/audio/FFTFrameStub.cpp Source/WebCore/platform/audio/fftw/FFTFrameFFTW.cpp Source/WebCore/platform/audio/ffmpeg/FFTFrameFFMPEG.cpp Source/WebCore/css/CSSStyleApplyProperty.h Source/WebCore/css/CSSStyleApplyProperty.cpp Source/WebCore/storage/IDBCursorWithValue.cpp Source/WebCore/storage/IDBDatabaseCallbacks.h Source/WebCore/storage/IDBDatabaseCallbacksImpl.cpp Source/WebCore/storage/IDBSQLiteBackingStore.h Source/WebCore/storage/IDBObjectStoreBackendImpl.h Source/WebCore/storage/IDBVersionChangeRequest.idl Source/WebCore/storage/IDBIndexBackendImpl.h Source/WebCore/storage/IDBDatabaseBackendImpl.cpp Source/WebCore/storage/IDBLevelDBBackingStore.h Source/WebCore/storage/IDBVersionChangeRequest.cpp Source/WebCore/storage/IDBDatabaseCallbacksImpl.h Source/WebCore/storage/IDBVersionChangeEvent.h Source/WebCore/storage/IDBVersionChangeEvent.idl Source/WebCore/storage/IDBLevelDBCoding.h Source/WebCore/storage/IDBVersionChangeEvent.cpp Source/WebCore/storage/StorageInfo.idl Source/WebCore/storage/IDBBackingStore.h Source/WebCore/storage/IDBLevelDBBackingStore.cpp Source/WebCore/storage/IDBVersionChangeRequest.h Source/WebCore/storage/IDBObjectStoreBackendImpl.cpp Source/WebCore/storage/IDBCursorWithValue.h Source/WebCore/storage/IDBLevelDBCoding.cpp Source/WebCore/storage/IDBSQLiteBackingStore.cpp Source/WebCore/storage/IDBIndexBackendImpl.cpp Source/WebCore/html/canvas/OESVertexArrayObject.h Source/WebCore/html/canvas/WebGLVertexArrayObjectOES.h Source/WebCore/html/canvas/OESStandardDerivatives.cpp Source/WebCore/html/canvas/OESStandardDerivatives.h Source/WebCore/html/canvas/WebGLVertexArrayObjectOES.idl Source/WebCore/html/canvas/OESVertexArrayObject.idl Source/WebCore/html/canvas/OESStandardDerivatives.idl Source/WebCore/html/canvas/OESVertexArrayObject.cpp Source/WebCore/html/canvas/WebGLVertexArrayObjectOES.cpp Source/WebCore/html/DOMURL.idl Source/WebCore/html/DOMURL.h Source/WebCore/html/HTMLTrackElement.h Source/WebCore/html/HTMLTrackElement.idl Source/WebCore/html/DOMURL.cpp Source/WebCore/html/HTMLTrackElement.cpp Source/WebCore/inspector/InspectorFrontendProxy.h Source/WebCore/inspector/EventsCollector.cpp Source/WebCore/inspector/EventsCollector.h Source/WebCore/inspector/InspectorConsoleAgent.h Source/WebCore/inspector/InspectorConsoleAgent.cpp Source/WebCore/inspector/InspectorFrontendChannel.h Source/WebCore/testing/v8/WebCoreTestSupport.cpp Source/WebCore/testing/v8/WebCoreTestSupport.h Source/WebCore/testing/Internals.h Source/WebCore/testing/js/WebCoreTestSupport.cpp Source/WebCore/testing/js/WebCoreTestSupport.h Source/WebCore/testing/Internals.cpp Source/WebCore/testing/Internals.idl Source/WebCore/xml/XMLTreeViewer.h Source/WebCore/xml/XMLTreeViewer.cpp Source/WebCore/xml/XMLViewer.css Source/WebCore/xml/XMLViewer.js Source/JavaScriptCore/wtf/OSRandomSource.cpp Copyright: 2011 Google Inc. License: BSD-2-clause Files: Source/WebCore/page/PositionError.idl Source/WebCore/page/Geoposition.idl Source/WebCore/page/SuspendableTimer.cpp Source/WebCore/page/PositionCallback.h Source/WebCore/page/Geolocation.idl Source/WebCore/page/PositionOptions.h Source/WebCore/page/WorkerNavigator.cpp Source/WebCore/page/NavigatorBase.h Source/WebCore/page/PositionError.h Source/WebCore/page/Geoposition.h Source/WebCore/page/DOMTimer.h Source/WebCore/page/DOMTimer.cpp Source/WebCore/page/PositionErrorCallback.h Source/WebCore/page/SuspendableTimer.h Source/WebCore/page/PageGroup.h Source/WebCore/page/win/FrameCairoWin.cpp Source/WebCore/page/PageGroup.cpp Source/WebCore/page/WorkerNavigator.h Source/WebCore/page/NavigatorBase.cpp Source/WebCore/loader/appcache/ApplicationCache.cpp Source/WebCore/loader/appcache/ManifestParser.cpp Source/WebCore/loader/appcache/ApplicationCache.h Source/WebCore/loader/appcache/ManifestParser.h Source/WebCore/loader/appcache/ApplicationCacheResource.h Source/WebCore/loader/appcache/ApplicationCacheResource.cpp Source/WebCore/loader/CrossOriginAccessControl.h Source/WebCore/loader/CrossOriginPreflightResultCache.h Source/WebCore/loader/cache/CachedResourceHandle.h Source/WebCore/loader/cache/CachedResourceHandle.cpp Source/WebCore/loader/SubstituteResource.h Source/WebCore/loader/CrossOriginAccessControl.cpp Source/WebCore/bindings/js/JSHTMLInputElementCustom.cpp Source/WebCore/bindings/js/JSWebKitCSSMatrixCustom.cpp Source/WebCore/bindings/js/JSStorageCustom.h Source/WebCore/bindings/js/JSHTMLObjectElementCustom.h Source/WebCore/bindings/js/JSJavaScriptCallFrameCustom.cpp Source/WebCore/bindings/js/JSEventTarget.h Source/WebCore/bindings/js/JavaScriptCallFrame.h Source/WebCore/bindings/js/JSHistoryCustom.h Source/WebCore/bindings/js/JSCustomPositionCallback.cpp Source/WebCore/bindings/js/JSEventTarget.cpp Source/WebCore/bindings/js/JSImageDataCustom.cpp Source/WebCore/bindings/js/WorkerScriptController.h Source/WebCore/bindings/js/JSHTMLInputElementCustom.h Source/WebCore/bindings/js/JSConsoleCustom.cpp Source/WebCore/bindings/js/JSStorageCustom.cpp Source/WebCore/bindings/js/JavaScriptCallFrame.cpp Source/WebCore/bindings/js/JSCSSStyleDeclarationCustom.h Source/WebCore/bindings/js/JSLocationCustom.h Source/WebCore/bindings/js/JSTextCustom.cpp Source/WebCore/bindings/js/JSHTMLAppletElementCustom.h Source/WebCore/bindings/js/JSDOMGlobalObject.h Source/WebCore/bindings/js/JSHTMLEmbedElementCustom.h Source/WebCore/bindings/js/JSCustomPositionErrorCallback.h Source/WebCore/bindings/js/JSCustomPositionErrorCallback.cpp Source/WebCore/bindings/js/JSCustomPositionCallback.h Source/WebCore/bindings/js/CachedScriptSourceProvider.h Source/WebCore/bindings/js/JSGeolocationCustom.cpp Source/WebCore/dom/MessagePort.h Source/WebCore/dom/ActiveDOMObject.h Source/WebCore/dom/NodeWithIndex.h Source/WebCore/dom/MessageChannel.h Source/WebCore/dom/MessageChannel.cpp Source/WebCore/dom/RangeBoundaryPoint.h Source/WebCore/dom/ActiveDOMObject.cpp Source/WebCore/dom/MessagePort.idl Source/WebCore/dom/ScriptExecutionContext.cpp Source/WebCore/dom/ScriptExecutionContext.h Source/WebCore/dom/MessagePort.cpp Source/WebCore/rendering/RenderScrollbarTheme.cpp Source/WebCore/rendering/RenderScrollbarPart.cpp Source/WebCore/rendering/RenderScrollbarPart.h Source/WebCore/rendering/RenderScrollbarTheme.h Source/WebCore/platform/ScrollbarThemeComposite.cpp Source/WebCore/platform/Theme.cpp Source/WebCore/platform/network/NetworkStateNotifier.h Source/WebCore/platform/network/NetworkStateNotifier.cpp Source/WebCore/platform/EventLoop.h Source/WebCore/platform/graphics/FontData.h Source/WebCore/platform/graphics/FontRenderingMode.h Source/WebCore/platform/graphics/FontTraitsMask.h Source/WebCore/platform/graphics/FontData.cpp Source/WebCore/platform/graphics/cg/ImageSourceCGWin.cpp Source/WebCore/platform/graphics/cg/ImageSourceCG.h Source/WebCore/platform/graphics/win/ImageCairoWin.cpp Source/WebCore/platform/graphics/win/GraphicsContextCairoWin.cpp Source/WebCore/platform/graphics/UnitBezier.h Source/WebCore/platform/KURLHash.h Source/WebCore/platform/Theme.h Source/WebCore/platform/GeolocationService.cpp Source/WebCore/platform/ThreadGlobalData.cpp Source/WebCore/platform/ScrollbarTheme.h Source/WebCore/platform/HostWindow.h Source/WebCore/platform/mac/ThemeMac.h Source/WebCore/platform/mac/ScrollbarThemeMac.h Source/WebCore/platform/mac/EventLoopMac.mm Source/WebCore/platform/mac/PurgeableBufferMac.cpp Source/WebCore/platform/ThreadGlobalData.h Source/WebCore/platform/ScrollbarThemeComposite.h Source/WebCore/platform/qt/ScrollbarThemeQt.h Source/WebCore/platform/GeolocationService.h Source/WebCore/css/CSSUnicodeRangeValue.h Source/WebCore/css/CSSSegmentedFontFace.cpp Source/WebCore/css/CSSReflectValue.cpp Source/WebCore/css/CSSUnicodeRangeValue.cpp Source/WebCore/css/CSSImageGeneratorValue.h Source/WebCore/css/CSSReflectValue.h Source/WebCore/css/CSSGradientValue.h Source/WebCore/css/CSSCanvasValue.h Source/WebCore/css/CSSSelectorList.h Source/WebCore/css/CSSSegmentedFontFace.h Source/WebCore/css/CSSCanvasValue.cpp Source/WebCore/css/CSSGradientValue.cpp Source/WebCore/css/WebKitCSSMatrix.h Source/WebCore/css/WebKitCSSMatrix.cpp Source/WebCore/css/CSSImageGeneratorValue.cpp Source/WebCore/css/CSSFunctionValue.h Source/WebCore/css/CSSReflectionDirection.h Source/WebCore/workers/WorkerLocation.cpp Source/WebCore/workers/WorkerLocation.h Source/WebCore/workers/WorkerThread.h Source/WebCore/workers/WorkerContext.idl Source/WebCore/workers/WorkerMessagingProxy.h Source/WebCore/workers/WorkerThread.cpp Source/WebCore/fileapi/FileList.h Source/WebCore/fileapi/File.cpp Source/WebCore/fileapi/FileList.cpp Source/WebCore/fileapi/File.idl Source/WebCore/fileapi/FileList.idl Source/WebCore/fileapi/File.h Source/WebCore/storage/LocalStorageTask.cpp Source/WebCore/storage/StorageEventDispatcher.cpp Source/WebCore/storage/StorageArea.h Source/WebCore/storage/Storage.cpp Source/WebCore/storage/StorageNamespace.h Source/WebCore/storage/StorageSyncManager.h Source/WebCore/storage/LocalStorageThread.cpp Source/WebCore/storage/LocalStorageThread.h Source/WebCore/storage/StorageNamespace.cpp Source/WebCore/storage/StorageNamespaceImpl.cpp Source/WebCore/storage/StorageSyncManager.cpp Source/WebCore/storage/StorageAreaImpl.cpp Source/WebCore/storage/StorageMap.h Source/WebCore/storage/Storage.h Source/WebCore/storage/LocalStorageTask.h Source/WebCore/storage/StorageMap.cpp Source/WebCore/storage/StorageAreaImpl.h Source/WebCore/storage/StorageNamespaceImpl.h Source/WebCore/storage/Storage.idl Source/WebCore/plugins/PluginMainThreadScheduler.h Source/WebCore/plugins/PluginMainThreadScheduler.cpp Source/WebCore/editing/WritingDirection.h Source/WebCore/svg/animation/SVGSMILElement.cpp Source/WebCore/svg/animation/SVGSMILElement.h Source/WebCore/svg/animation/SMILTimeContainer.cpp Source/WebCore/svg/animation/SMILTime.cpp Source/WebCore/svg/animation/SMILTime.h Source/WebCore/svg/animation/SMILTimeContainer.h Source/WebCore/svg/SVGAltGlyphElement.idl Source/WebCore/html/TextMetrics.idl Source/WebCore/html/TextMetrics.h Source/WebCore/html/MediaDocument.cpp Source/WebCore/inspector/JavaScriptCallFrame.idl Source/WebCore/inspector/combine-javascript-resources.pl Source/WebCore/inspector/front-end/Script.js Source/WebCore/inspector/front-end/View.js Source/WebCore/inspector/front-end/DataGrid.js Source/WebCore/inspector/front-end/CallStackSidebarPane.js Source/WebCore/inspector/front-end/Placard.js Source/WebCore/inspector/front-end/SidebarTreeElement.js Source/WebCore/inspector/front-end/DatabaseTableView.js Source/WebCore/inspector/front-end/ProfilesPanel.js Source/WebCore/inspector/front-end/PanelEnablerView.js Source/WebCore/inspector/front-end/Object.js Source/WebCore/inspector/front-end/DatabaseQueryView.js Source/WebCore/inspector/front-end/ProfileView.js Source/WebCore/inspector/front-end/BreakpointsSidebarPane.js Source/WebCore/xml/XMLHttpRequestUpload.cpp Source/WebCore/xml/XMLHttpRequestUpload.h Source/JavaScriptCore/API/JSProfilerPrivate.h Source/JavaScriptCore/API/OpaqueJSString.cpp Source/JavaScriptCore/API/OpaqueJSString.h Source/JavaScriptCore/API/JSProfilerPrivate.cpp Source/JavaScriptCore/bytecode/StructureStubInfo.cpp Source/JavaScriptCore/bytecode/StructureStubInfo.h Source/JavaScriptCore/jit/JIT.h Source/JavaScriptCore/jit/JITCall.cpp Source/JavaScriptCore/jit/JITArithmetic.cpp Source/JavaScriptCore/jit/ExecutableAllocator.cpp Source/JavaScriptCore/jit/ExecutableAllocator.h Source/JavaScriptCore/jit/JITStubCall.h Source/JavaScriptCore/jit/JITCode.h Source/JavaScriptCore/jit/JITInlineMethods.h Source/JavaScriptCore/jit/JITArithmetic32_64.cpp Source/JavaScriptCore/jit/JITCall32_64.cpp Source/JavaScriptCore/parser/ResultType.h Source/JavaScriptCore/runtime/StructureChain.h Source/JavaScriptCore/runtime/ConstructData.cpp Source/JavaScriptCore/runtime/JSTypeInfo.h Source/JavaScriptCore/runtime/StructureChain.cpp Source/JavaScriptCore/runtime/Tracing.h Source/JavaScriptCore/runtime/BatchedTransitionOptimizer.h Source/JavaScriptCore/runtime/PutPropertySlot.h Source/JavaScriptCore/runtime/Tracing.d Source/JavaScriptCore/runtime/CallData.cpp Source/JavaScriptCore/interpreter/CallFrame.cpp Source/JavaScriptCore/assembler/X86Assembler.h Source/JavaScriptCore/assembler/MacroAssemblerX86_64.h Source/JavaScriptCore/assembler/MacroAssembler.h Source/JavaScriptCore/assembler/MacroAssemblerX86Common.h Source/JavaScriptCore/assembler/AbstractMacroAssembler.h Source/JavaScriptCore/assembler/AssemblerBuffer.h Source/JavaScriptCore/assembler/MacroAssemblerX86.h Source/JavaScriptCore/wtf/NotFound.h Source/JavaScriptCore/wtf/StdLibExtras.h Source/JavaScriptCore/wtf/WTFThreadData.h Source/JavaScriptCore/profiler/ProfileGenerator.cpp Source/JavaScriptCore/profiler/ProfilerServer.mm Source/JavaScriptCore/profiler/Profile.cpp Source/JavaScriptCore/profiler/ProfilerServer.h Source/JavaScriptCore/profiler/CallIdentifier.h Source/JavaScriptCore/profiler/ProfileGenerator.h Source/JavaScriptCore/profiler/Profile.h Copyright: 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/UserStyleSheetTypes.h Source/WebCore/page/GeolocationController.cpp Source/WebCore/page/UserContentURLPattern.h Source/WebCore/page/HaltablePlugin.h Source/WebCore/page/GeolocationError.h Source/WebCore/page/PluginHalter.h Source/WebCore/page/UserContentTypes.h Source/WebCore/page/PluginHalterClient.h Source/WebCore/page/GeolocationController.h Source/WebCore/page/UserScriptTypes.h Source/WebCore/page/UserScript.h Source/WebCore/page/WebKitPoint.h Source/WebCore/page/GeolocationClient.h Source/WebCore/page/Coordinates.idl Source/WebCore/page/PluginHalter.cpp Source/WebCore/page/GeolocationPosition.h Source/WebCore/page/Coordinates.h Source/WebCore/page/UserStyleSheet.h Source/WebCore/loader/PlaceholderDocument.cpp Source/WebCore/loader/PlaceholderDocument.h Source/WebCore/bindings/js/JSUint32ArrayCustom.cpp Source/WebCore/bindings/js/JSFloat32ArrayCustom.cpp Source/WebCore/bindings/js/JSUint8ArrayCustom.cpp Source/WebCore/bindings/js/JSInt8ArrayCustom.cpp Source/WebCore/bindings/js/JSCanvasRenderingContextCustom.cpp Source/WebCore/bindings/js/JSUint16ArrayCustom.cpp Source/WebCore/bindings/js/JSHTMLAllCollectionCustom.cpp Source/WebCore/bindings/js/JSExceptionBase.cpp Source/WebCore/bindings/js/JSInt16ArrayCustom.cpp Source/WebCore/bindings/js/SerializedScriptValue.h Source/WebCore/bindings/js/JSWebGLRenderingContextCustom.cpp Source/WebCore/bindings/js/SerializedScriptValue.cpp Source/WebCore/bindings/js/JSCoordinatesCustom.cpp Source/WebCore/bindings/js/JSInt32ArrayCustom.cpp Source/WebCore/bindings/js/JSArrayBufferCustom.cpp Source/WebCore/bindings/js/JSExceptionBase.h Source/WebCore/dom/CompositionEvent.cpp Source/WebCore/dom/PageTransitionEvent.idl Source/WebCore/dom/BeforeLoadEvent.idl Source/WebCore/dom/XMLDocumentParserScope.cpp Source/WebCore/dom/ClientRectList.idl Source/WebCore/dom/ClientRectList.cpp Source/WebCore/dom/CompositionEvent.h Source/WebCore/dom/PopStateEvent.h Source/WebCore/dom/PopStateEvent.idl Source/WebCore/dom/CompositionEvent.idl Source/WebCore/dom/XMLDocumentParserScope.h Source/WebCore/dom/TransformSourceLibxslt.cpp Source/WebCore/dom/BeforeLoadEvent.h Source/WebCore/dom/PopStateEvent.cpp Source/WebCore/dom/ClientRect.cpp Source/WebCore/dom/ClientRect.idl Source/WebCore/dom/ClientRect.h Source/WebCore/dom/PageTransitionEvent.h Source/WebCore/dom/ClientRectList.h Source/WebCore/dom/PageTransitionEvent.cpp Source/WebCore/rendering/RenderLayerCompositor.h Source/WebCore/rendering/TransformState.h Source/WebCore/rendering/RenderLayerBacking.h Source/WebCore/rendering/RenderLayerBacking.cpp Source/WebCore/rendering/RenderWidgetProtector.h Source/WebCore/rendering/style/LineClampValue.h Source/WebCore/rendering/RenderMediaControls.cpp Source/WebCore/rendering/OverlapTestRequestClient.h Source/WebCore/rendering/RenderMediaControls.h Source/WebCore/rendering/TransformState.cpp Source/WebCore/rendering/RenderObjectChildList.h Source/WebCore/platform/mock/GeolocationServiceMock.h Source/WebCore/platform/mock/GeolocationServiceMock.cpp Source/WebCore/platform/network/CredentialStorage.cpp Source/WebCore/platform/network/CredentialStorage.h Source/WebCore/platform/network/ProtectionSpaceHash.h Source/WebCore/platform/network/AuthenticationClient.h Source/WebCore/platform/graphics/TextRenderingMode.h Source/WebCore/platform/graphics/GraphicsLayer.h Source/WebCore/platform/graphics/transforms/Matrix3DTransformOperation.cpp Source/WebCore/platform/graphics/transforms/PerspectiveTransformOperation.h Source/WebCore/platform/graphics/transforms/Matrix3DTransformOperation.h Source/WebCore/platform/graphics/transforms/PerspectiveTransformOperation.cpp Source/WebCore/platform/graphics/FontSmoothingMode.h Source/WebCore/platform/graphics/ca/win/CACFLayerTreeHost.h Source/WebCore/platform/graphics/ca/win/CACFLayerTreeHost.cpp Source/WebCore/platform/graphics/GraphicsLayerClient.h Source/WebCore/platform/graphics/ColorSpace.h Source/WebCore/platform/graphics/GraphicsLayer.cpp Source/WebCore/platform/graphics/GraphicsContext3D.h Source/WebCore/platform/graphics/win/GraphicsLayerCACF.cpp Source/WebCore/platform/graphics/win/WebLayer.cpp Source/WebCore/platform/graphics/win/GraphicsLayerCACF.h Source/WebCore/platform/graphics/win/MediaPlayerPrivateTaskTimer.cpp Source/WebCore/platform/graphics/win/MediaPlayerPrivateTaskTimer.h Source/WebCore/platform/graphics/win/WebTiledLayer.cpp Source/WebCore/platform/graphics/win/TransformationMatrixWin.cpp Source/WebCore/platform/graphics/mac/WebLayer.h Source/WebCore/platform/graphics/mac/WebTiledLayer.h Source/WebCore/platform/graphics/mac/MediaPlayerProxy.h Source/WebCore/platform/graphics/mac/WebGLLayer.h Source/WebCore/platform/graphics/mac/WebLayer.mm Source/WebCore/platform/graphics/mac/WebGLLayer.mm Source/WebCore/platform/graphics/mac/WebTiledLayer.mm Source/WebCore/platform/graphics/mac/GraphicsContext3DMac.mm Source/WebCore/platform/win/SystemInfo.h Source/WebCore/platform/win/SystemInfo.cpp Source/WebCore/platform/mac/WebVideoFullscreenHUDWindowController.mm Source/WebCore/platform/mac/WebWindowAnimation.h Source/WebCore/platform/mac/SuddenTermination.mm Source/WebCore/platform/mac/WebVideoFullscreenController.mm Source/WebCore/platform/mac/WebWindowAnimation.mm Source/WebCore/platform/mac/WebVideoFullscreenHUDWindowController.h Source/WebCore/platform/mac/WebVideoFullscreenController.h Source/WebCore/platform/SuddenTermination.h Source/WebCore/platform/cf/BinaryPropertyList.cpp Source/WebCore/platform/cf/BinaryPropertyList.h Source/WebCore/css/StyleMedia.cpp Source/WebCore/accessibility/AccessibilityAllInOne.cpp Source/WebCore/history/CachedFrame.cpp Source/WebCore/bridge/IdentifierRep.cpp Source/WebCore/bridge/IdentifierRep.h Source/WebCore/svg/SVGAllInOne.cpp Source/WebCore/html/HTMLAllCollection.idl Source/WebCore/html/HTMLAllCollection.cpp Source/WebCore/html/HTMLParserQuirks.h Source/WebCore/html/HTMLAllCollection.h Source/WebCore/html/canvas/CanvasRenderingContext.idl Source/WebCore/html/canvas/CanvasRenderingContext.h Source/WebCore/html/canvas/Int16Array.h Source/WebCore/html/canvas/WebGLBuffer.h Source/WebCore/html/canvas/WebGLBuffer.cpp Source/WebCore/html/canvas/WebGLActiveInfo.idl Source/WebCore/html/canvas/WebGLRenderingContext.idl Source/WebCore/html/canvas/Int16Array.cpp Source/WebCore/html/canvas/WebGLTexture.h Source/WebCore/html/canvas/WebGLActiveInfo.h Source/WebCore/html/canvas/WebGLObject.cpp Source/WebCore/html/canvas/CanvasRenderingContext.cpp Source/WebCore/html/canvas/ArrayBufferView.idl Source/WebCore/html/canvas/WebGLBuffer.idl Source/WebCore/html/canvas/WebGLTexture.idl Source/WebCore/html/canvas/WebGLObject.h Source/WebCore/html/canvas/WebGLTexture.cpp Source/WebCore/html/canvas/WebGLShader.cpp Source/WebCore/html/canvas/WebGLProgram.cpp Source/WebCore/html/canvas/WebGLProgram.idl Source/WebCore/html/canvas/ArrayBufferView.cpp Source/WebCore/html/canvas/WebGLRenderbuffer.cpp Source/WebCore/html/canvas/WebGLFramebuffer.idl Source/WebCore/html/canvas/WebGLRenderingContext.cpp Source/WebCore/html/canvas/WebGLRenderbuffer.idl Source/WebCore/html/canvas/WebGLRenderbuffer.h Source/WebCore/html/canvas/WebGLShader.h Source/WebCore/html/canvas/ArrayBufferView.h Source/WebCore/html/canvas/ArrayBuffer.h Source/WebCore/html/canvas/WebGLFramebuffer.cpp Source/WebCore/html/canvas/WebGLFramebuffer.h Source/WebCore/html/canvas/WebGLShader.idl Source/WebCore/html/canvas/WebGLRenderingContext.h Source/WebCore/html/canvas/ArrayBuffer.cpp Source/WebCore/html/canvas/WebGLProgram.h Source/JavaScriptCore/API/APIShims.h Source/JavaScriptCore/jit/ExecutableAllocatorFixedVMPool.cpp Source/JavaScriptCore/parser/ParserArena.h Source/JavaScriptCore/runtime/JSStringBuilder.h Source/JavaScriptCore/runtime/JSByteArray.h Source/JavaScriptCore/runtime/JSONObject.cpp Source/JavaScriptCore/runtime/UStringBuilder.h Source/JavaScriptCore/runtime/DateInstanceCache.h Source/JavaScriptCore/runtime/JSZombie.h Source/JavaScriptCore/runtime/WeakGCMap.h Source/JavaScriptCore/runtime/JSONObject.h Source/JavaScriptCore/runtime/JSByteArray.cpp Source/JavaScriptCore/runtime/NumericStrings.h Source/JavaScriptCore/runtime/PropertyDescriptor.cpp Source/JavaScriptCore/runtime/LiteralParser.cpp Source/JavaScriptCore/runtime/RopeImpl.cpp Source/JavaScriptCore/runtime/JSZombie.cpp Source/JavaScriptCore/runtime/LiteralParser.h Source/JavaScriptCore/runtime/PropertyDescriptor.h Source/JavaScriptCore/interpreter/CachedCall.h Source/JavaScriptCore/interpreter/CallFrameClosure.h Source/JavaScriptCore/assembler/RepatchBuffer.h Source/JavaScriptCore/assembler/CodeLocation.h Source/JavaScriptCore/assembler/MacroAssemblerCodeRef.h Source/JavaScriptCore/wtf/VMTags.h Source/JavaScriptCore/wtf/PossiblyNull.h Source/JavaScriptCore/wtf/ByteArray.h Source/JavaScriptCore/wtf/ByteArray.cpp Source/JavaScriptCore/heap/MarkStackPosix.cpp Source/JavaScriptCore/heap/ConservativeRoots.h Source/JavaScriptCore/heap/Weak.h Source/JavaScriptCore/heap/MarkStackWin.cpp Source/JavaScriptCore/yarr/YarrParser.h Source/JavaScriptCore/yarr/YarrJIT.cpp Source/JavaScriptCore/yarr/YarrJIT.h Source/WebKit2/Configurations/DebugRelease.xcconfig Copyright: 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/DOMWindow.h Copyright: 2006, 2007, 2009, 2010 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/page/History.h Source/WebCore/page/win/DragControllerWin.cpp Source/WebCore/page/History.cpp Source/WebCore/page/qt/DragControllerQt.cpp Source/WebCore/page/DragClient.h Source/WebCore/page/DragActions.h Source/WebCore/loader/ProgressTracker.cpp Source/WebCore/loader/ProgressTracker.h Source/WebCore/loader/SubstituteData.h Source/WebCore/bindings/js/JSHTMLAppletElementCustom.cpp Source/WebCore/bindings/js/GCController.cpp Source/WebCore/bindings/js/JSHTMLEmbedElementCustom.cpp Source/WebCore/bindings/js/JSHTMLElementCustom.cpp Source/WebCore/bindings/js/GCController.h Source/WebCore/bindings/js/JSNodeListCustom.cpp Source/WebCore/dom/ProgressEvent.idl Source/WebCore/dom/TextEvent.cpp Source/WebCore/dom/TextEvent.idl Source/WebCore/rendering/RenderWordBreak.cpp Source/WebCore/rendering/LayoutState.cpp Source/WebCore/rendering/RenderWordBreak.h Source/WebCore/rendering/LayoutState.h Source/WebCore/platform/DragImage.cpp Source/WebCore/platform/network/Credential.cpp Source/WebCore/platform/network/ProtectionSpace.cpp Source/WebCore/platform/network/ProtectionSpace.h Source/WebCore/platform/network/AuthenticationChallengeBase.h Source/WebCore/platform/network/Credential.h Source/WebCore/platform/network/qt/AuthenticationChallenge.h Source/WebCore/platform/network/AuthenticationChallengeBase.cpp Source/WebCore/platform/DragData.h Source/WebCore/platform/text/mac/ShapeArabic.h Source/WebCore/platform/DragData.cpp Source/WebCore/platform/mac/PasteboardHelper.h Source/WebCore/platform/mac/ThreadCheck.mm Source/WebCore/platform/mac/DragDataMac.mm Source/WebCore/platform/DragImage.h Source/WebCore/platform/qt/DragImageQt.cpp Source/WebCore/platform/ThreadCheck.h Source/WebCore/history/PageCache.h Source/WebCore/history/PageCache.cpp Source/WebCore/plugins/npfunctions.h Source/WebCore/html/MediaError.h Source/WebCore/html/MediaError.idl Source/WebCore/html/HTMLAudioElement.idl Source/WebCore/html/VoidCallback.idl Source/WebCore/html/VoidCallback.h Source/WebCore/WebCorePrefix.cpp Source/JavaScriptCore/wtf/unicode/UTF8.h Source/JavaScriptCore/wtf/HashIterators.h Source/WebKit/qt/WebCoreSupport/DragClientQt.h Source/WebKit/qt/WebCoreSupport/DragClientQt.cpp Copyright: 2007 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/DOMWindow.cpp Copyright: 2006, 2007, 2008, 2010 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/page/EventHandler.h Copyright: 2006, 2007, 2009, 2010, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/ContextMenuClient.h Source/WebCore/page/FocusDirection.h Source/WebCore/loader/icon/IconLoader.cpp Source/WebCore/dom/ClipboardAccessPolicy.h Source/WebCore/dom/BeforeTextInsertedEvent.h Source/WebCore/platform/ScrollTypes.h Source/WebCore/platform/Timer.h Source/WebCore/platform/sql/SQLiteTransaction.cpp Source/WebCore/platform/sql/SQLiteTransaction.h Source/WebCore/platform/network/ResourceErrorBase.h Source/WebCore/platform/network/ResourceHandleClient.h Source/WebCore/platform/network/qt/ResourceError.h Source/WebCore/platform/network/qt/ResourceResponse.h Source/WebCore/platform/ContextMenu.h Source/WebCore/platform/graphics/GraphicsTypes.cpp Source/WebCore/platform/graphics/win/IntRectWin.cpp Source/WebCore/platform/graphics/win/IntPointWin.cpp Source/WebCore/platform/graphics/win/IntSizeWin.cpp Source/WebCore/platform/PlatformMenuDescription.h Source/WebCore/platform/image-decoders/cairo/ImageDecoderCairo.cpp Source/WebCore/platform/SystemTime.h Source/WebCore/platform/PlatformScreen.h Source/WebCore/platform/MIMETypeRegistry.h Source/WebCore/platform/mac/SystemTimeMac.cpp Source/WebCore/platform/mac/SoundMac.mm Source/WebCore/platform/mac/ContextMenuItemMac.mm Source/WebCore/platform/mac/ContextMenuMac.mm Source/WebCore/platform/mac/PlatformScreenMac.mm Source/WebCore/platform/mac/SharedBufferMac.mm Source/WebCore/platform/mac/PasteboardMac.mm Source/WebCore/platform/SharedTimer.h Source/WebCore/platform/Sound.h Source/WebCore/platform/Pasteboard.h Source/WebCore/css/view-source.css Source/WebCore/editing/EditorDeleteAction.h Source/WebCore/editing/EditorInsertAction.h Source/WebCore/editing/UnlinkCommand.cpp Source/WebCore/editing/FormatBlockCommand.cpp Source/WebCore/editing/CreateLinkCommand.cpp Source/WebCore/html/canvas/CanvasGradient.idl Source/WebCore/html/canvas/CanvasPattern.idl Source/WebCore/html/canvas/CanvasRenderingContext2D.idl Source/JavaScriptCore/API/JSContextRef.h Source/JavaScriptCore/API/JSStringRef.h Source/JavaScriptCore/API/JSBase.h Source/JavaScriptCore/API/JSClassRef.h Source/JavaScriptCore/API/APICast.h Source/JavaScriptCore/API/JSValueRef.h Copyright: 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/page/WebKitPoint.idl Source/WebCore/page/UserContentURLPattern.cpp Source/WebCore/bindings/js/JSBindingsAllInOne.cpp Source/WebCore/bindings/js/JSWebKitPointCustom.cpp Source/WebCore/rendering/svg/RenderSVGAllInOne.cpp Source/WebCore/rendering/RenderLayerCompositor.cpp Source/WebCore/history/CachedFrame.h Source/WebCore/html/canvas/ArrayBuffer.idl Source/JavaScriptCore/parser/ParserArena.cpp Source/JavaScriptCore/runtime/RopeImpl.h Source/JavaScriptCore/runtime/Executable.h Source/JavaScriptCore/runtime/Executable.cpp Source/JavaScriptCore/assembler/LinkBuffer.h Source/JavaScriptCore/wtf/PassOwnPtr.h Source/JavaScriptCore/wtf/text/StringBuilder.h Source/JavaScriptCore/yarr/YarrInterpreter.h Source/WebKit/mac/Configurations/Version.xcconfig Source/WebKit2/UIProcess/API/mac/WKTextInputWindowController.h Source/WebKit2/WebProcess/WebProcess.cpp Copyright: 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/AbstractView.idl Copyright: 2006 Apple Computer, Inc. 2006 Samuel Weinig License: BSD-2-clause Files: Source/WebCore/page/EventHandler.cpp Copyright: 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. 2006 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/page/Settings.cpp Copyright: 2006, 2007, 2008, 2009, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/EditorClient.h Source/WebCore/editing/TextCheckingHelper.cpp Copyright: 2006, 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/page/FocusController.h Source/WebCore/page/ContextMenuController.h Source/WebCore/page/win/FrameWin.h Source/WebCore/dom/ExceptionCode.cpp Source/WebCore/dom/OverflowEvent.cpp Source/WebCore/dom/OverflowEvent.idl Source/WebCore/platform/SecureTextInput.cpp Source/WebCore/platform/graphics/cg/GraphicsContextPlatformPrivateCG.h Source/WebCore/platform/text/TextEncodingRegistry.h Source/WebCore/platform/win/SystemTimeWin.cpp Source/WebCore/css/CSSValueList.idl Source/WebCore/css/MediaList.idl Source/WebCore/plugins/PluginDebug.h Source/WebCore/plugins/npapi.cpp Source/WebCore/editing/DeleteButtonController.h Source/JavaScriptCore/API/JSClassRef.cpp Source/JavaScriptCore/API/JSBase.cpp Source/JavaScriptCore/API/JSContextRef.cpp Source/JavaScriptCore/API/JSStringRef.cpp Source/JavaScriptCore/API/JSValueRef.cpp Copyright: 2006, 2007 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/SpeechInputResult.cpp Source/WebCore/page/SpeechInputResultList.idl Source/WebCore/page/GroupSettings.h Source/WebCore/page/SpeechInputResult.idl Source/WebCore/page/SpeechInputResultList.h Source/WebCore/page/GroupSettings.cpp Source/WebCore/page/SpeechInputEvent.idl Source/WebCore/page/SpeechInputResult.h Source/WebCore/page/SpeechInputEvent.h Source/WebCore/bindings/js/JSDeviceOrientationEventCustom.cpp Source/WebCore/bindings/js/IDBBindingUtilities.cpp Source/WebCore/bindings/js/JSIDBAnyCustom.cpp Source/WebCore/bindings/js/JSIDBKeyCustom.cpp Source/WebCore/bindings/js/JSMainThreadExecState.h Source/WebCore/bindings/js/IDBBindingUtilities.h Source/WebCore/bindings/js/JSDataViewCustom.cpp Source/WebCore/bindings/js/JSMainThreadExecState.cpp Source/WebCore/bindings/js/OptionsObject.h Source/WebCore/bindings/js/JSHTMLOutputElementCustom.cpp Source/WebCore/dom/EventContext.cpp Source/WebCore/dom/DeviceOrientation.h Source/WebCore/dom/DOMStringList.cpp Source/WebCore/dom/DOMStringList.h Source/WebCore/dom/DOMStringList.idl Source/WebCore/dom/EventQueue.cpp Source/WebCore/dom/EventQueue.h Source/WebCore/dom/EventContext.h Source/WebCore/dom/WindowEventContext.cpp Source/WebCore/dom/DeviceOrientation.cpp Source/WebCore/dom/WindowEventContext.h Source/WebCore/platform/mock/DeviceOrientationClientMock.h Source/WebCore/platform/mock/DeviceOrientationClientMock.cpp Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.h Source/WebCore/platform/graphics/opengl/Extensions3DOpenGL.cpp Source/WebCore/platform/graphics/gpu/LoopBlinnClassifier.h Source/WebCore/platform/graphics/gpu/PODArena.h Source/WebCore/platform/graphics/gpu/LoopBlinnMathUtils.cpp Source/WebCore/platform/graphics/gpu/PODInterval.h Source/WebCore/platform/graphics/gpu/LoopBlinnTextureCoords.cpp Source/WebCore/platform/graphics/gpu/LoopBlinnTextureCoords.h Source/WebCore/platform/graphics/gpu/LoopBlinnConstants.h Source/WebCore/platform/graphics/gpu/PODRedBlackTree.h Source/WebCore/platform/graphics/gpu/LoopBlinnLocalTriangulator.h Source/WebCore/platform/graphics/gpu/LoopBlinnLocalTriangulator.cpp Source/WebCore/platform/graphics/gpu/LoopBlinnMathUtils.h Source/WebCore/platform/graphics/gpu/PODIntervalTree.h Source/WebCore/platform/graphics/gpu/LoopBlinnClassifier.cpp Source/WebCore/platform/graphics/Extensions3D.h Source/WebCore/platform/graphics/qt/Extensions3DQt.h Source/WebCore/platform/graphics/qt/Extensions3DQt.cpp Source/WebCore/platform/KillRingNone.cpp Source/WebCore/platform/KillRing.h Source/WebCore/platform/mac/KillRingMac.mm Source/WebCore/platform/audio/mkl/FFTFrameMKL.cpp Source/WebCore/storage/IDBIndex.cpp Source/WebCore/storage/IDBDatabaseException.h Source/WebCore/storage/IDBDatabaseBackendImpl.h Source/WebCore/storage/IDBTransaction.cpp Source/WebCore/storage/IDBAny.h Source/WebCore/storage/IDBCursorBackendImpl.cpp Source/WebCore/storage/IDBKeyRange.cpp Source/WebCore/storage/IDBCursorBackendInterface.h Source/WebCore/storage/IDBTransaction.h Source/WebCore/storage/IDBKeyPathBackendImpl.h Source/WebCore/storage/IDBDatabaseError.h Source/WebCore/storage/IDBDatabaseBackendInterface.h Source/WebCore/storage/IDBObjectStore.cpp Source/WebCore/storage/IDBIndexBackendInterface.h Source/WebCore/storage/IDBIndex.idl Source/WebCore/storage/IDBCursor.cpp Source/WebCore/storage/IDBTransactionCoordinator.cpp Source/WebCore/storage/IDBDatabase.h Source/WebCore/storage/IDBCursorBackendImpl.h Source/WebCore/storage/IDBPendingTransactionMonitor.cpp Source/WebCore/storage/IDBAny.idl Source/WebCore/storage/IDBDatabase.cpp Source/WebCore/storage/IDBKeyPathBackendImpl.cpp Source/WebCore/storage/IDBKey.h Source/WebCore/storage/IDBKeyRange.idl Source/WebCore/storage/IDBKeyRange.h Source/WebCore/storage/IDBDatabaseError.idl Source/WebCore/storage/IDBObjectStoreBackendInterface.h Source/WebCore/storage/IDBDatabaseException.idl Source/WebCore/storage/IDBIndex.h Source/WebCore/storage/IDBPendingTransactionMonitor.h Source/WebCore/storage/IDBFactory.idl Source/WebCore/storage/IDBTransactionBackendImpl.cpp Source/WebCore/storage/IDBCursor.idl Source/WebCore/storage/IDBCursorWithValue.idl Source/WebCore/storage/IDBAny.cpp Source/WebCore/storage/IDBTransactionBackendInterface.h Source/WebCore/storage/IDBKey.idl Source/WebCore/storage/IDBTransactionBackendImpl.h Source/WebCore/storage/IDBCursor.h Source/WebCore/storage/IDBObjectStore.idl Source/WebCore/storage/IDBObjectStore.h Source/WebCore/storage/IDBKey.cpp Source/WebCore/storage/IDBKeyPath.h Source/WebCore/storage/IDBKeyPath.cpp Source/WebCore/storage/IDBTransactionCoordinator.h Source/WebCore/editing/SpellChecker.cpp Source/WebCore/editing/SpellChecker.h Source/WebCore/html/DOMTokenList.h Source/WebCore/html/parser/HTMLMetaCharsetParser.cpp Source/WebCore/html/parser/HTMLMetaCharsetParser.h Source/WebCore/html/parser/TextDocumentParser.cpp Source/WebCore/html/parser/TextDocumentParser.h Source/WebCore/html/canvas/WebGLExtension.cpp Source/WebCore/html/canvas/WebGLContextEvent.h Source/WebCore/html/canvas/OESTextureFloat.h Source/WebCore/html/canvas/WebGLExtension.h Source/WebCore/html/canvas/WebGLContextEvent.cpp Source/WebCore/html/canvas/OESTextureFloat.cpp Source/WebCore/html/canvas/WebGLContextEvent.idl Source/WebCore/html/canvas/DataView.h Source/WebCore/html/canvas/OESTextureFloat.idl Source/WebCore/html/canvas/DataView.idl Source/WebCore/html/canvas/WebKitLoseContext.h Source/WebCore/html/canvas/DataView.cpp Source/WebCore/html/canvas/WebKitLoseContext.idl Source/WebCore/html/canvas/WebKitLoseContext.cpp Source/WebCore/html/ClassList.cpp Source/WebCore/html/DOMTokenList.cpp Source/WebCore/html/HTMLOutputElement.idl Source/WebCore/html/DOMSettableTokenList.cpp Source/WebCore/html/ClassList.h Source/WebCore/html/DOMSettableTokenList.h Source/WebCore/html/DOMSettableTokenList.idl Source/WebCore/webaudio/AudioParam.cpp Source/WebCore/inspector/front-end/Checkbox.js Copyright: 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/page/WebKitAnimation.cpp Source/WebCore/page/WebKitAnimationList.cpp Source/WebCore/page/WebKitAnimation.h Source/WebCore/page/WebKitAnimationList.h Source/WebCore/page/WebKitAnimationList.idl Source/WebCore/loader/icon/IconDatabaseBase.h Source/WebCore/loader/icon/IconDatabaseBase.cpp Source/WebCore/bindings/js/CallbackFunction.h Source/WebCore/bindings/js/JSDOMTokenListCustom.cpp Source/WebCore/bindings/js/CallbackFunction.cpp Source/WebCore/bindings/js/JSMediaListCustom.cpp Source/WebCore/platform/RuntimeApplicationChecks.cpp Source/WebCore/platform/PlatformGestureEvent.h Source/WebCore/platform/graphics/ImageBufferData.h Source/WebCore/platform/graphics/IntRectHash.h Source/WebCore/platform/graphics/ca/PlatformCALayerClient.h Source/WebCore/platform/graphics/ca/win/WKCACFViewLayerTreeHost.h Source/WebCore/platform/graphics/ca/win/PlatformCALayerWinInternal.h Source/WebCore/platform/graphics/ca/win/LayerChangesFlusher.h Source/WebCore/platform/graphics/ca/win/PlatformCALayerWin.cpp Source/WebCore/platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp Source/WebCore/platform/graphics/ca/win/PlatformCALayerWinInternal.cpp Source/WebCore/platform/graphics/ca/win/PlatformCAAnimationWin.cpp Source/WebCore/platform/graphics/ca/win/LayerChangesFlusher.cpp Source/WebCore/platform/graphics/ca/win/CACFLayerTreeHostClient.h Source/WebCore/platform/graphics/ca/win/WKCACFViewLayerTreeHost.cpp Source/WebCore/platform/graphics/ca/win/LegacyCACFLayerTreeHost.h Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundationObjC.h Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundationObjC.mm Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h Source/WebCore/platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp Source/WebCore/platform/graphics/cg/ImageBufferDataCG.cpp Source/WebCore/platform/graphics/win/FullScreenControllerClient.h Source/WebCore/platform/graphics/win/FullScreenController.h Source/WebCore/platform/graphics/FontWidthVariant.h Source/WebCore/platform/text/TextCodecUTF8.h Source/WebCore/platform/text/LocalizedDateNone.cpp Source/WebCore/platform/text/LocalizedDate.h Source/WebCore/platform/CookiesStrategy.h Source/WebCore/platform/mac/HTMLConverter.mm Source/WebCore/platform/mac/LocalizedStringsMac.mm Source/WebCore/platform/cf/win/CertificateCFWin.h Source/WebCore/platform/cf/win/CertificateCFWin.cpp Source/WebCore/css/fullscreenQuickTime.css Source/WebCore/css/CSSLineBoxContainValue.cpp Source/WebCore/css/CSSPrimitiveValueCache.cpp Source/WebCore/css/CSSLineBoxContainValue.h Source/WebCore/css/CSSPrimitiveValueCache.h Source/WebCore/accessibility/AccessibilityScrollView.cpp Source/WebCore/accessibility/AccessibilityScrollView.h Source/WebCore/storage/StorageTracker.cpp Source/WebCore/storage/StorageTracker.h Source/WebCore/storage/StorageTrackerClient.h Source/WebCore/editing/SpellingCorrectionCommand.h Source/WebCore/editing/SetSelectionCommand.cpp Source/WebCore/editing/SpellingCorrectionCommand.cpp Source/WebCore/editing/SetSelectionCommand.h Source/JavaScriptCore/parser/SourceProviderCacheItem.h Source/JavaScriptCore/parser/SourceProviderCache.cpp Source/JavaScriptCore/parser/SourceProviderCache.h Source/JavaScriptCore/runtime/WriteBarrier.h Source/JavaScriptCore/runtime/JSValueInlineMethods.h Source/JavaScriptCore/runtime/JSChunk.cpp Source/JavaScriptCore/runtime/JSChunk.h Source/JavaScriptCore/dfg/DFGGenerationInfo.h Source/JavaScriptCore/dfg/DFGByteCodeParser.cpp Source/JavaScriptCore/dfg/DFGNode.h Source/JavaScriptCore/dfg/DFGRegisterBank.h Source/JavaScriptCore/dfg/DFGFPRInfo.h Source/JavaScriptCore/dfg/DFGGPRInfo.h Source/JavaScriptCore/dfg/DFGNonSpeculativeJIT.cpp Source/JavaScriptCore/dfg/DFGScoreBoard.h Source/JavaScriptCore/dfg/DFGOperations.cpp Source/JavaScriptCore/dfg/DFGOperations.h Source/JavaScriptCore/dfg/DFGGraph.h Source/JavaScriptCore/dfg/DFGByteCodeParser.h Source/JavaScriptCore/dfg/DFGAliasTracker.h Source/JavaScriptCore/dfg/DFGSpeculativeJIT.h Source/JavaScriptCore/dfg/DFGJITCompiler.cpp Source/JavaScriptCore/dfg/DFGJITCodeGenerator.h Source/JavaScriptCore/dfg/DFGGraph.cpp Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp Source/JavaScriptCore/dfg/DFGJITCodeGenerator.cpp Source/JavaScriptCore/dfg/DFGJITCompiler.h Source/JavaScriptCore/dfg/DFGNonSpeculativeJIT.h Source/JavaScriptCore/wtf/BlockStack.h Source/JavaScriptCore/wtf/SentinelLinkedList.h Source/JavaScriptCore/wtf/DoublyLinkedList.h Source/JavaScriptCore/wtf/SinglyLinkedList.h Source/JavaScriptCore/wtf/ExportMacros.h Source/JavaScriptCore/wtf/Encoder.h Source/JavaScriptCore/wtf/BloomFilter.h Source/JavaScriptCore/wtf/Decoder.h Source/JavaScriptCore/heap/HandleHeap.cpp Source/JavaScriptCore/heap/HandleHeap.h Source/JavaScriptCore/heap/Handle.h Source/JavaScriptCore/heap/Strong.h Source/JavaScriptCore/heap/ConservativeRoots.cpp Source/JavaScriptCore/heap/MarkedBlock.cpp Source/JavaScriptCore/yarr/YarrSyntaxChecker.h Source/JavaScriptCore/yarr/YarrSyntaxChecker.cpp Source/WebKit2/Shared/PrintInfo.h Source/WebKit2/Shared/API/c/WKGraphicsContext.cpp Source/WebKit2/Shared/API/c/cg/WKGraphicsContextCG.cpp Source/WebKit2/Shared/API/c/cg/WKGraphicsContextCG.h Source/WebKit2/Shared/API/c/WKGraphicsContext.h Source/WebKit2/Shared/API/c/cf/WKErrorCF.cpp Source/WebKit2/Shared/API/c/cf/WKErrorCF.h Source/WebKit2/Shared/WebCoreArgumentCoders.cpp Source/WebKit2/Shared/ContextMenuState.h Source/WebKit2/Shared/NativeWebMouseEvent.h Source/WebKit2/Shared/gtk/NativeWebWheelEventGtk.cpp Source/WebKit2/Shared/PrintInfo.cpp Source/WebKit2/Shared/UpdateInfo.cpp Source/WebKit2/Shared/SecurityOriginData.cpp Source/WebKit2/Shared/WebGeolocationPosition.cpp Source/WebKit2/Shared/SessionState.h Source/WebKit2/Shared/WebGeolocationPosition.h Source/WebKit2/Shared/DragControllerAction.h Source/WebKit2/Shared/DictionaryPopupInfo.h Source/WebKit2/Shared/SecurityOriginData.h Source/WebKit2/Shared/DictionaryPopupInfo.cpp Source/WebKit2/Shared/FontInfo.cpp Source/WebKit2/Shared/FontInfo.h Source/WebKit2/Shared/LayerTreeContext.h Source/WebKit2/Shared/TextCheckerState.h Source/WebKit2/Shared/WebGestureEvent.cpp Source/WebKit2/Shared/HTTPCookieAcceptPolicy.h Source/WebKit2/Shared/cg/WebCoreArgumentCodersCG.cpp Source/WebKit2/Shared/cg/win/ShareableBitmapCGWin.cpp Source/WebKit2/Shared/WebGraphicsContext.cpp Source/WebKit2/Shared/WebGraphicsContext.h Source/WebKit2/Shared/win/NativeWebMouseEventWin.cpp Source/WebKit2/Shared/win/LayerTreeContextWin.cpp Source/WebKit2/Shared/win/NativeWebWheelEventWin.cpp Source/WebKit2/Shared/win/WebKitBundle.h Source/WebKit2/Shared/win/WebKitBundle.cpp Source/WebKit2/Shared/mac/NativeWebWheelEventMac.mm Source/WebKit2/Shared/mac/CoreAnimationRenderer.mm Source/WebKit2/Shared/mac/CoreAnimationRenderer.h Source/WebKit2/Shared/mac/PrintInfoMac.mm Source/WebKit2/Shared/mac/PasteboardTypes.mm Source/WebKit2/Shared/mac/AttributedString.mm Source/WebKit2/Shared/mac/ArgumentCodersMac.h Source/WebKit2/Shared/mac/LayerTreeContextMac.mm Source/WebKit2/Shared/mac/AttributedString.h Source/WebKit2/Shared/mac/ArgumentCodersMac.mm Source/WebKit2/Shared/mac/NativeWebMouseEventMac.mm Source/WebKit2/Shared/mac/PasteboardTypes.h Source/WebKit2/Shared/mac/ShareableSurface.h Source/WebKit2/Shared/mac/ShareableSurface.cpp Source/WebKit2/Shared/NativeWebWheelEvent.h Source/WebKit2/Shared/UpdateInfo.h Source/WebKit2/Shared/qt/NativeWebWheelEventQt.cpp Source/WebKit2/Shared/qt/LayerTreeContextQt.cpp Source/WebKit2/Shared/ResourceCachesToClear.h Source/WebKit2/Shared/SessionState.cpp Source/WebKit2/Platform/CoreIPC/win/BinarySemaphoreWin.cpp Source/WebKit2/Platform/cg/CGUtilities.cpp Source/WebKit2/Platform/cg/CGUtilities.h Source/WebKit2/Platform/mac/Logging.mac.mm Source/WebKit2/UIProcess/WebKeyValueStorageManagerProxy.h Source/WebKit2/UIProcess/BackingStore.h Source/WebKit2/UIProcess/WebGeolocationManagerProxy.h Source/WebKit2/UIProcess/BackingStore.cpp Source/WebKit2/UIProcess/GeolocationPermissionRequestManagerProxy.cpp Source/WebKit2/UIProcess/API/C/WKCookieManager.h Source/WebKit2/UIProcess/API/C/WKGeolocationPermissionRequest.h Source/WebKit2/UIProcess/API/C/WKCookieManager.cpp Source/WebKit2/UIProcess/API/C/WKIconDatabase.cpp Source/WebKit2/UIProcess/API/C/WKPluginSiteDataManager.h Source/WebKit2/UIProcess/API/C/WKApplicationCacheManager.h Source/WebKit2/UIProcess/API/C/WKGeolocationPosition.h Source/WebKit2/UIProcess/API/C/WKGeolocationManager.cpp Source/WebKit2/UIProcess/API/C/WKGeolocationPosition.cpp Source/WebKit2/UIProcess/API/C/WKMediaCacheManager.h Source/WebKit2/UIProcess/API/C/WKApplicationCacheManager.cpp Source/WebKit2/UIProcess/API/C/cg/WKIconDatabaseCG.cpp Source/WebKit2/UIProcess/API/C/cg/WKIconDatabaseCG.h Source/WebKit2/UIProcess/API/C/WKGeolocationPermissionRequest.cpp Source/WebKit2/UIProcess/API/C/WKGeolocationManager.h Source/WebKit2/UIProcess/API/C/WKResourceCacheManager.h Source/WebKit2/UIProcess/API/C/WKMediaCacheManager.cpp Source/WebKit2/UIProcess/API/C/win/WKGrammarDetail.h Source/WebKit2/UIProcess/API/C/win/WKGrammarDetail.cpp Source/WebKit2/UIProcess/API/C/win/WKTextChecker.h Source/WebKit2/UIProcess/API/C/win/WKTextChecker.cpp Source/WebKit2/UIProcess/API/C/WKKeyValueStorageManager.h Source/WebKit2/UIProcess/API/C/mac/WKInspectorMac.h Source/WebKit2/UIProcess/API/C/WKIconDatabase.h Source/WebKit2/UIProcess/API/C/WKKeyValueStorageManager.cpp Source/WebKit2/UIProcess/API/C/WKResourceCacheManager.cpp Source/WebKit2/UIProcess/API/C/WKPluginSiteDataManager.cpp Source/WebKit2/UIProcess/API/mac/WKPrintingView.h Source/WebKit2/UIProcess/API/mac/WKPrintingView.mm Source/WebKit2/UIProcess/API/mac/WKViewPrivate.h Source/WebKit2/UIProcess/WebIconDatabaseClient.cpp Source/WebKit2/UIProcess/WebFullScreenManagerProxy.h Source/WebKit2/UIProcess/WebCookieManagerProxy.cpp Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.h Source/WebKit2/UIProcess/WebResourceCacheManagerProxy.cpp Source/WebKit2/UIProcess/Plugins/WebPluginSiteDataManager.h Source/WebKit2/UIProcess/Plugins/WebPluginSiteDataManager.cpp Source/WebKit2/UIProcess/WebResourceCacheManagerProxy.h Source/WebKit2/UIProcess/WebCookieManagerProxy.h Source/WebKit2/UIProcess/WebResourceCacheManagerProxy.messages.in Source/WebKit2/UIProcess/WebGeolocationProvider.h Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.h Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.cpp Source/WebKit2/UIProcess/WebCookieManagerProxy.messages.in Source/WebKit2/UIProcess/WebGeolocationManagerProxy.cpp Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.messages.in Source/WebKit2/UIProcess/WebIconDatabase.messages.in Source/WebKit2/UIProcess/WebCookieManagerProxyClient.cpp Source/WebKit2/UIProcess/WebIconDatabase.h Source/WebKit2/UIProcess/GeolocationPermissionRequestProxy.cpp Source/WebKit2/UIProcess/WebCookieManagerProxyClient.h Source/WebKit2/UIProcess/WebIconDatabaseClient.h Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.messages.in Source/WebKit2/UIProcess/WebKeyValueStorageManagerProxy.cpp Source/WebKit2/UIProcess/WebGeolocationProvider.cpp Source/WebKit2/UIProcess/WebKeyValueStorageManagerProxy.messages.in Source/WebKit2/UIProcess/DrawingAreaProxyImpl.h Source/WebKit2/UIProcess/win/WebGrammarDetail.cpp Source/WebKit2/UIProcess/win/WebGrammarDetail.h Source/WebKit2/UIProcess/win/WebTextChecker.h Source/WebKit2/UIProcess/win/WebTextCheckerClient.cpp Source/WebKit2/UIProcess/win/WebProcessProxyWin.cpp Source/WebKit2/UIProcess/win/WebUndoClient.cpp Source/WebKit2/UIProcess/win/BackingStoreWin.cpp Source/WebKit2/UIProcess/win/WebFullScreenManagerProxyWin.cpp Source/WebKit2/UIProcess/win/WebTextChecker.cpp Source/WebKit2/UIProcess/win/WebUndoClient.h Source/WebKit2/UIProcess/win/WebTextCheckerClient.h Source/WebKit2/UIProcess/mac/CorrectionPanel.mm Source/WebKit2/UIProcess/mac/CorrectionPanel.h Source/WebKit2/UIProcess/mac/WKFullScreenWindowController.h Source/WebKit2/UIProcess/mac/BackingStoreMac.mm Source/WebKit2/UIProcess/WebMediaCacheManagerProxy.cpp Source/WebKit2/UIProcess/WebGeolocationManagerProxy.messages.in Source/WebKit2/UIProcess/GeolocationPermissionRequestProxy.h Source/WebKit2/UIProcess/WebFullScreenManagerProxy.messages.in Source/WebKit2/UIProcess/GeolocationPermissionRequestManagerProxy.h Source/WebKit2/UIProcess/DrawingAreaProxyImpl.cpp Source/WebKit2/UIProcess/WebIconDatabase.cpp Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp Source/WebKit2/WebProcess/Geolocation/GeolocationPermissionRequestManager.cpp Source/WebKit2/WebProcess/Geolocation/WebGeolocationManager.cpp Source/WebKit2/WebProcess/Geolocation/WebGeolocationManager.messages.in Source/WebKit2/WebProcess/Geolocation/WebGeolocationManager.h Source/WebKit2/WebProcess/Geolocation/GeolocationPermissionRequestManager.h Source/WebKit2/WebProcess/Cookies/gtk/WebCookieManagerGtk.cpp Source/WebKit2/WebProcess/Cookies/WebCookieManager.cpp Source/WebKit2/WebProcess/Cookies/WebCookieManager.messages.in Source/WebKit2/WebProcess/Cookies/mac/WebCookieManagerMac.mm Source/WebKit2/WebProcess/Cookies/WebCookieManager.h Source/WebKit2/WebProcess/Cookies/qt/WebCookieManagerQt.cpp Source/WebKit2/WebProcess/Cookies/cf/WebCookieManagerCFNet.cpp Source/WebKit2/WebProcess/IconDatabase/WebIconDatabaseProxy.cpp Source/WebKit2/WebProcess/IconDatabase/WebIconDatabaseProxy.messages.in Source/WebKit2/WebProcess/IconDatabase/WebIconDatabaseProxy.h Source/WebKit2/WebProcess/ResourceCache/WebResourceCacheManager.messages.in Source/WebKit2/WebProcess/ResourceCache/WebResourceCacheManager.h Source/WebKit2/WebProcess/ResourceCache/cf/WebResourceCacheManagerCFNet.cpp Source/WebKit2/WebProcess/ResourceCache/WebResourceCacheManager.cpp Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNavigationAction.cpp Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleInspector.cpp Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleNavigationAction.h Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleInspector.h Source/WebKit2/WebProcess/InjectedBundle/API/c/win/WKBundlePrivateWin.h Source/WebKit2/WebProcess/InjectedBundle/API/c/win/WKBundlePrivateWin.cpp Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePagePolicyClient.cpp Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageFullScreenClient.h Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleNavigationAction.cpp Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePageResourceLoadClient.cpp Source/WebKit2/WebProcess/InjectedBundle/InjectedBundlePagePolicyClient.h Source/WebKit2/WebProcess/InjectedBundle/InjectedBundleNavigationAction.h Source/WebKit2/WebProcess/Downloads/DownloadAuthenticationClient.h Source/WebKit2/WebProcess/Downloads/DownloadAuthenticationClient.cpp Source/WebKit2/WebProcess/Downloads/cf/win/DownloadCFWin.cpp Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.cpp Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.messages.in Source/WebKit2/WebProcess/FullScreen/gtk/WebFullScreenManagerGtk.h Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.h Source/WebKit2/WebProcess/FullScreen/win/WebFullScreenManagerWin.cpp Source/WebKit2/WebProcess/FullScreen/win/WebFullScreenManagerWin.h Source/WebKit2/WebProcess/FullScreen/mac/WebFullScreenManagerMac.mm Source/WebKit2/WebProcess/FullScreen/mac/WebFullScreenManagerMac.h Source/WebKit2/WebProcess/MediaCache/WebMediaCacheManager.h Source/WebKit2/WebProcess/MediaCache/WebMediaCacheManager.cpp Source/WebKit2/WebProcess/MediaCache/WebMediaCacheManager.messages.in Source/WebKit2/WebProcess/KeyValueStorage/WebKeyValueStorageManager.h Source/WebKit2/WebProcess/KeyValueStorage/WebKeyValueStorageManager.cpp Source/WebKit2/WebProcess/KeyValueStorage/WebKeyValueStorageManager.messages.in Source/WebKit2/WebProcess/WebCoreSupport/WebGeolocationClient.cpp Source/WebKit2/WebProcess/WebCoreSupport/WebGeolocationClient.h Source/WebKit2/WebProcess/WebCoreSupport/win/WebDragSource.h Source/WebKit2/WebProcess/WebCoreSupport/win/WebDragClientWin.cpp Source/WebKit2/WebProcess/WebCoreSupport/win/WebDragSource.cpp Source/WebKit2/WebProcess/WebCoreSupport/mac/WebDragClientMac.mm Source/WebKit2/WebProcess/Authentication/mac/AuthenticationManager.mac.mm Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.h Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.cpp Source/WebKit2/WebProcess/ApplicationCache/WebApplicationCacheManager.messages.in Source/WebKit2/WebProcess/mac/FullKeyboardAccessWatcher.h Source/WebKit2/WebProcess/mac/FullKeyboardAccessWatcher.mm Source/WebKit2/WebProcess/WebPage/LayerTreeHost.cpp Source/WebKit2/WebProcess/WebPage/DecoderAdapter.h Source/WebKit2/WebProcess/WebPage/LayerTreeHost.h Source/WebKit2/WebProcess/WebPage/EncoderAdapter.cpp Source/WebKit2/WebProcess/WebPage/ca/LayerTreeHostCA.cpp Source/WebKit2/WebProcess/WebPage/ca/LayerTreeHostCA.h Source/WebKit2/WebProcess/WebPage/ca/win/LayerTreeHostCAWin.h Source/WebKit2/WebProcess/WebPage/ca/win/LayerTreeHostCAWin.cpp Source/WebKit2/WebProcess/WebPage/ca/mac/LayerTreeHostCAMac.mm Source/WebKit2/WebProcess/WebPage/ca/mac/LayerTreeHostCAMac.h Source/WebKit2/WebProcess/WebPage/EncoderAdapter.h Source/WebKit2/WebProcess/WebPage/DecoderAdapter.cpp Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.h Source/WebKit2/WebProcess/WebPage/win/LayerTreeHostWin.cpp Source/WebKit2/WebProcess/WebPage/DrawingAreaImpl.cpp Source/WebKit2/WebProcess/WebPage/mac/AccessibilityWebPageObject.h Source/WebKit2/WebProcess/WebPage/mac/AccessibilityWebPageObject.mm Copyright: 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/Geolocation.cpp Copyright: 2008, 2009 Apple Inc. 2009 Torch Mobile, Inc. 2010, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/page/FrameLoadRequest.h Source/WebCore/platform/Language.h Copyright: 2003, 2006, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/SpatialNavigation.cpp Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies) 2009 Antonio Gomes License: BSD-2-clause Files: Source/WebCore/page/GeolocationPositionCache.cpp Source/WebCore/page/GeolocationPositionCache.h Source/WebCore/bindings/js/JSTouchCustom.cpp Source/WebCore/bindings/js/JSTouchListCustom.cpp Source/WebCore/dom/DeviceOrientationEvent.idl Source/WebCore/dom/DeviceOrientationClient.h Source/WebCore/dom/DeviceOrientationController.h Source/WebCore/dom/DeviceOrientationEvent.cpp Source/WebCore/dom/DeviceOrientationController.cpp Source/WebCore/dom/DeviceOrientationEvent.h Copyright: 2010, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/page/ContentSecurityPolicy.h Source/WebCore/page/ContentSecurityPolicy.cpp Source/WebCore/platform/URLString.h Source/WebCore/platform/text/UnicodeBidi.h Source/WebCore/generated/Inspector.idl Copyright: 2011 Google, Inc. License: BSD-2-clause Files: Source/WebCore/page/DOMWindow.idl Source/WebCore/platform/graphics/win/FontCGWin.cpp Source/WebCore/platform/graphics/mac/FontComplexTextMac.cpp Source/WebCore/html/ImageDocument.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/DragController.cpp Source/WebCore/bindings/js/JSNodeCustom.h Source/WebCore/bindings/js/JSNodeCustom.cpp Source/WebCore/rendering/RenderVideo.h Source/WebCore/html/TimeRanges.cpp Source/JavaScriptCore/wtf/unicode/CharacterNames.h Copyright: 2007, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/Settings.h Copyright: 2003, 2006, 2007, 2008, 2009, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/ContextMenuController.cpp Copyright: 2006, 2007 Apple Inc. 2010 Igalia S.L License: BSD-2-clause Files: Source/WebCore/page/win/EventHandlerWin.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2007-2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/page/win/FrameCGWin.cpp Source/WebCore/page/win/FrameWin.cpp Source/WebCore/bindings/js/JSHTMLFormElementCustom.cpp Source/WebCore/dom/Clipboard.cpp Source/WebCore/dom/OverflowEvent.h Source/WebCore/platform/sql/SQLiteStatement.cpp Source/WebCore/platform/sql/SQLiteStatement.h Source/WebCore/platform/graphics/win/FontWin.cpp Source/WebCore/platform/graphics/win/ImageWin.cpp Source/WebCore/platform/graphics/win/ImageCGWin.cpp Source/WebCore/platform/ScrollView.cpp Source/WebCore/history/CachedPage.h Source/WebCore/history/CachedPage.cpp Source/WebCore/editing/Editor.h Source/WebCore/html/TextDocument.cpp Source/JavaScriptCore/API/JSCallbackConstructor.cpp Source/JavaScriptCore/wtf/RandomNumber.cpp Copyright: 2006, 2007, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/page/FocusController.cpp Copyright: 2006, 2007 Apple Inc. 2008 Nuanti Ltd. License: BSD-2-clause Files: Source/WebCore/page/Geolocation.h Copyright: 2008, 2009 Apple Inc. 2010, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/page/WebCoreKeyboardUIMode.h Source/WebCore/platform/mac/WebCoreView.m Source/WebCore/platform/mac/WebCoreView.h Source/WebCore/platform/mac/BlockExceptions.h Source/WebCore/bridge/jni/jni_jsobject.h Source/WebCore/bridge/jni/jsc/JavaInstanceJSC.h Source/WebCore/bridge/c/c_instance.h Source/WebCore/bridge/c/c_class.h Copyright: 2003 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/page/qt/EventHandlerQt.cpp Source/WebCore/platform/qt/PasteboardQt.cpp Copyright: 2006 Zack Rusin 2006, 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/page/History.idl Source/WebCore/loader/cache/CachedFont.h Source/WebCore/bindings/js/JSAudioConstructor.h Source/WebCore/bindings/js/JSHTMLObjectElementCustom.cpp Source/WebCore/bindings/js/JSCSSValueCustom.cpp Source/WebCore/bindings/js/JSHTMLFrameSetElementCustom.cpp Source/WebCore/bindings/js/JSCSSRuleCustom.cpp Source/WebCore/dom/PositionIterator.cpp Source/WebCore/dom/TextEvent.h Source/WebCore/dom/WebKitAnimationEvent.cpp Source/WebCore/dom/ProgressEvent.h Source/WebCore/dom/PositionIterator.h Source/WebCore/dom/WebKitTransitionEvent.h Source/WebCore/dom/WebKitTransitionEvent.idl Source/WebCore/dom/WebKitAnimationEvent.idl Source/WebCore/dom/WebKitTransitionEvent.cpp Source/WebCore/dom/ProgressEvent.cpp Source/WebCore/dom/WebKitAnimationEvent.h Source/WebCore/platform/graphics/FontSelector.h Source/WebCore/platform/qt/ClipboardQt.h Source/WebCore/css/CSSFontFace.cpp Source/WebCore/css/WebKitCSSTransformValue.cpp Source/WebCore/css/WebKitCSSKeyframeRule.cpp Source/WebCore/css/CSSFontFaceSource.h Source/WebCore/css/WebKitCSSTransformValue.h Source/WebCore/css/CSSFontFace.h Source/WebCore/css/CSSTimingFunctionValue.h Source/WebCore/css/CSSFontSelector.h Source/WebCore/css/WebKitCSSKeyframesRule.cpp Source/WebCore/css/WebKitCSSKeyframeRule.h Source/WebCore/css/CSSFontSelector.cpp Source/WebCore/css/WebKitCSSKeyframesRule.h Source/WebCore/css/CSSFontFaceSrcValue.h Source/WebCore/editing/RemoveFormatCommand.h Source/WebCore/html/FTPDirectoryDocument.cpp Copyright: 2007, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/loader/DocumentLoadTiming.h Source/WebCore/dom/ScriptRunner.h Source/WebCore/dom/ScriptableDocumentParser.h Source/WebCore/dom/PendingScript.h Source/WebCore/dom/DecodedDataDocumentParser.h Source/WebCore/dom/DecodedDataDocumentParser.cpp Source/WebCore/dom/FragmentScriptingPermission.h Source/WebCore/dom/TextEventInputType.h Source/WebCore/dom/IgnoreDestructiveWriteCountIncrementer.h Source/WebCore/dom/ScriptableDocumentParser.cpp Source/WebCore/dom/RawDataDocumentParser.h Source/WebCore/dom/DocumentParser.cpp Source/WebCore/dom/DocumentTiming.h Source/WebCore/dom/PendingScript.cpp Source/WebCore/dom/ScriptRunner.cpp Source/WebCore/platform/network/ResourceLoadTiming.h Source/WebCore/platform/network/ResourceLoadInfo.h Source/WebCore/platform/image-decoders/cg/ImageDecoderCG.cpp Source/WebCore/generated/HTMLEntityTable.cpp Source/WebCore/html/parser/HTMLViewSourceParser.cpp Source/WebCore/html/parser/TextViewSourceParser.cpp Source/WebCore/html/parser/HTMLInputStream.h Source/WebCore/html/parser/HTMLFormattingElementList.h Source/WebCore/html/parser/HTMLToken.h Source/WebCore/html/parser/HTMLScriptRunnerHost.h Source/WebCore/html/parser/HTMLParserScheduler.cpp Source/WebCore/html/parser/HTMLScriptRunner.h Source/WebCore/html/parser/HTMLDocumentParser.h Source/WebCore/html/parser/HTMLDocumentParser.cpp Source/WebCore/html/parser/HTMLViewSourceParser.h Source/WebCore/html/parser/TextViewSourceParser.h Source/WebCore/html/parser/HTMLEntitySearch.cpp Source/WebCore/html/parser/NestingLevelIncrementer.h Source/WebCore/html/parser/HTMLEntityTable.h Source/WebCore/html/parser/HTMLFormattingElementList.cpp Source/WebCore/html/parser/HTMLEntitySearch.h Source/WebCore/html/parser/HTMLParserScheduler.h Source/WebCore/html/parser/HTMLScriptRunner.cpp Source/JavaScriptCore/wtf/url/api/URLString.h Source/JavaScriptCore/wtf/url/api/ParsedURL.cpp Source/JavaScriptCore/wtf/url/api/ParsedURL.h Copyright: 2010 Google, Inc. License: BSD-2-clause Files: Source/JavaScriptCore/wtf/CryptographicallyRandomNumber.cpp Copyright: 1996, David Mazieres 2008, Damien Miller License: ISCL Files: Source/WebCore/loader/appcache/ApplicationCacheStorage.cpp Copyright: 2008, 2009, 2010, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/loader/appcache/DOMApplicationCache.idl Source/WebCore/loader/appcache/DOMApplicationCache.cpp Source/WebCore/loader/appcache/DOMApplicationCache.h Source/WebCore/loader/appcache/ApplicationCacheHost.cpp Source/WebCore/loader/CrossOriginPreflightResultCache.cpp Source/WebCore/bindings/js/JSCDATASectionCustom.cpp Source/WebCore/bindings/js/JSDOMApplicationCacheCustom.cpp Source/WebCore/bindings/js/JSDOMGlobalObject.cpp Source/WebCore/bindings/js/JSWorkerContextBase.h Source/WebCore/bindings/js/JSWorkerCustom.cpp Source/WebCore/bindings/js/JSXMLHttpRequestUploadCustom.cpp Source/WebCore/bindings/js/JSMessagePortCustom.cpp Source/WebCore/bindings/js/JSMessageChannelCustom.cpp Source/WebCore/rendering/RenderScrollbar.h Source/WebCore/rendering/RenderScrollbar.cpp Source/WebCore/platform/graphics/SegmentedFontData.h Source/WebCore/platform/graphics/SegmentedFontData.cpp Source/WebCore/platform/graphics/cg/ImageSourceCGMac.mm Source/WebCore/workers/WorkerContext.h Source/WebCore/storage/StorageEvent.idl Source/WebCore/storage/StorageEvent.h Source/WebCore/storage/StorageEvent.cpp Source/JavaScriptCore/jit/JITPropertyAccess.cpp Source/JavaScriptCore/jit/JITPropertyAccess32_64.cpp Source/JavaScriptCore/jit/JIT.cpp Source/JavaScriptCore/runtime/SmallStrings.h Source/JavaScriptCore/runtime/JSStaticScopeObject.h Source/JavaScriptCore/runtime/StructureTransitionTable.h Source/JavaScriptCore/runtime/JSStaticScopeObject.cpp Source/JavaScriptCore/runtime/Structure.cpp Source/JavaScriptCore/runtime/Structure.h Source/JavaScriptCore/debugger/DebuggerActivation.cpp Source/JavaScriptCore/debugger/DebuggerActivation.h Source/JavaScriptCore/wtf/Threading.cpp Copyright: 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/loader/appcache/ApplicationCacheGroup.h Source/WebCore/loader/appcache/ApplicationCacheGroup.cpp Source/WebCore/platform/graphics/GeneratedImage.cpp Source/WebCore/platform/ThemeTypes.h Source/WebCore/storage/StorageAreaSync.h Source/WebCore/storage/StorageAreaSync.cpp Source/JavaScriptCore/API/WebKitAvailability.h Copyright: 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/loader/appcache/ApplicationCacheStorage.h Source/WebCore/platform/mac/ThemeMac.mm Copyright: 2008, 2010, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/loader/icon/IconDatabase.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2007 Justin Haygood License: BSD-2-clause Files: Source/WebCore/loader/icon/IconDatabase.cpp Copyright: 2006, 2007, 2008, 2009, 2011 Apple Inc. 2007 Justin Haygood License: BSD-2-clause Files: Source/WebCore/loader/icon/IconLoader.h Source/WebCore/editing/IndentOutdentCommand.h Source/WebCore/editing/UnlinkCommand.h Source/WebCore/editing/ModifySelectionListLevel.cpp Source/WebCore/editing/FormatBlockCommand.h Source/WebCore/editing/IndentOutdentCommand.cpp Source/WebCore/editing/InsertListCommand.h Source/WebCore/editing/CreateLinkCommand.h Source/WebCore/html/canvas/CanvasPattern.cpp Source/WebCore/html/canvas/CanvasPattern.h Source/WebCore/html/PluginDocument.cpp Source/JavaScriptCore/API/JSCallbackFunction.cpp Source/JavaScriptCore/API/JSCallbackConstructor.h Source/JavaScriptCore/API/JavaScriptCore.h Source/JavaScriptCore/API/JSCallbackFunction.h Copyright: 2006, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/loader/EmptyClients.h Copyright: 2006 Eric Seidel 2008, 2009, 2010, 2011 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebCore/loader/cache/CachedFont.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/loader/cache/CachePolicy.h Source/WebCore/platform/Logging.cpp Source/WebCore/platform/SSLKeyGenerator.h Source/WebCore/platform/graphics/cg/PathCG.cpp Source/WebCore/platform/graphics/cg/IntRectCG.cpp Source/WebCore/platform/graphics/mac/IntRectMac.mm Source/WebCore/platform/text/TextDirection.h Source/WebCore/platform/text/mac/CharsetData.h Source/WebCore/platform/Logging.h Source/WebCore/platform/mac/LoggingMac.mm Source/WebCore/bridge/npruntime_priv.h Source/WebCore/bridge/c/c_class.cpp Source/WebCore/bridge/c/c_instance.cpp Copyright: 2003, 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/JSHTMLCanvasElementCustom.cpp Copyright: 2007 Apple Inc. 2010 Torch Mobile (Beijing) Co. Ltd. License: BSD-2-clause Files: Source/WebCore/bindings/js/JSArrayBufferViewHelper.h Source/WebCore/rendering/RenderMediaControlsChromium.cpp Source/WebCore/rendering/RenderMediaControlsChromium.h Source/WebCore/css/mediaControlsChromium.css Source/WebCore/workers/WorkerScriptLoaderClient.h Source/WebCore/html/canvas/Uint16Array.cpp Source/WebCore/html/canvas/WebGLUniformLocation.h Source/WebCore/html/canvas/Uint16Array.h Source/WebCore/html/canvas/Int8Array.h Source/WebCore/html/canvas/Float32Array.h Source/WebCore/html/canvas/Uint32Array.h Source/WebCore/html/canvas/Float32Array.cpp Source/WebCore/html/canvas/Uint8Array.cpp Source/WebCore/html/canvas/WebGLGetInfo.h Source/WebCore/html/canvas/WebGLUniformLocation.cpp Source/WebCore/html/canvas/Int32Array.h Source/WebCore/html/canvas/WebGLUniformLocation.idl Source/WebCore/html/canvas/Int32Array.cpp Source/WebCore/html/canvas/Int8Array.cpp Source/WebCore/html/canvas/Uint32Array.cpp Source/WebCore/html/canvas/Uint8Array.h Source/WebCore/html/canvas/WebGLGetInfo.cpp Copyright: 2009 Apple Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/JSAudioContextCustom.cpp Source/WebCore/bindings/js/JSJavaScriptAudioNodeCustom.cpp Source/WebCore/bindings/js/JSAudioNodeCustom.cpp Source/WebCore/bindings/js/JSConvolverNodeCustom.cpp Source/WebCore/bindings/js/JSAudioBufferSourceNodeCustom.cpp Source/WebCore/platform/audio/EqualPowerPanner.cpp Source/WebCore/platform/audio/AudioResamplerKernel.h Source/WebCore/platform/audio/VectorMath.h Source/WebCore/platform/audio/AudioUtilities.h Source/WebCore/platform/audio/HRTFPanner.cpp Source/WebCore/platform/audio/AudioResampler.h Source/WebCore/platform/audio/HRTFPanner.h Source/WebCore/platform/audio/AudioResampler.cpp Source/WebCore/platform/audio/VectorMath.cpp Source/WebCore/platform/audio/chromium/AudioBusChromium.cpp Source/WebCore/platform/audio/AudioResamplerKernel.cpp Source/WebCore/platform/audio/mac/AudioBusMac.mm Source/WebCore/platform/audio/EqualPowerPanner.h Source/WebCore/platform/audio/AudioUtilities.cpp Source/WebCore/html/canvas/CanvasContextAttributes.h Source/WebCore/html/canvas/WebGLContextAttributes.cpp Source/WebCore/html/canvas/WebGLContextAttributes.idl Source/WebCore/html/canvas/WebGLContextAttributes.h Source/WebCore/html/canvas/CanvasContextAttributes.cpp Source/WebCore/html/DOMTokenList.idl Source/WebCore/webaudio/AudioDestinationNode.idl Source/WebCore/webaudio/JavaScriptAudioNode.cpp Source/WebCore/webaudio/RealtimeAnalyser.h Source/WebCore/webaudio/HighPass2FilterNode.cpp Source/WebCore/webaudio/AudioPannerNode.cpp Source/WebCore/webaudio/DelayDSPKernel.h Source/WebCore/webaudio/ConvolverNode.idl Source/WebCore/webaudio/RealtimeAnalyser.cpp Source/WebCore/webaudio/RealtimeAnalyserNode.idl Source/WebCore/webaudio/LowPass2FilterNode.idl Source/WebCore/webaudio/AudioNodeInput.cpp Source/WebCore/webaudio/AudioProcessingEvent.h Source/WebCore/webaudio/JavaScriptAudioNode.idl Source/WebCore/webaudio/AudioChannelSplitter.h Source/WebCore/webaudio/DelayNode.h Source/WebCore/webaudio/ConvolverNode.cpp Source/WebCore/webaudio/DelayProcessor.h Source/WebCore/webaudio/AudioNodeInput.h Source/WebCore/webaudio/AudioNode.idl Source/WebCore/webaudio/AudioDestinationNode.h Source/WebCore/webaudio/AudioBasicProcessorNode.cpp Source/WebCore/webaudio/RealtimeAnalyserNode.h Source/WebCore/webaudio/AudioChannelSplitter.idl Source/WebCore/webaudio/AudioNode.h Source/WebCore/webaudio/RealtimeAnalyserNode.cpp Source/WebCore/webaudio/BiquadDSPKernel.h Source/WebCore/webaudio/AudioBufferSourceNode.cpp Source/WebCore/webaudio/BiquadDSPKernel.cpp Source/WebCore/webaudio/AudioPannerNode.idl Source/WebCore/webaudio/HighPass2FilterNode.idl Source/WebCore/webaudio/JavaScriptAudioNode.h Source/WebCore/webaudio/AudioContext.h Source/WebCore/webaudio/AudioNode.cpp Source/WebCore/webaudio/LowPass2FilterNode.h Source/WebCore/webaudio/DelayProcessor.cpp Source/WebCore/webaudio/AudioChannelSplitter.cpp Source/WebCore/webaudio/BiquadProcessor.cpp Source/WebCore/webaudio/AudioNodeOutput.h Source/WebCore/webaudio/AudioContext.cpp Source/WebCore/webaudio/AudioBufferSourceNode.h Source/WebCore/webaudio/BiquadProcessor.h Source/WebCore/webaudio/AudioNodeOutput.cpp Source/WebCore/webaudio/LowPass2FilterNode.cpp Source/WebCore/webaudio/AudioGainNode.h Source/WebCore/webaudio/AudioProcessingEvent.idl Source/WebCore/webaudio/DelayDSPKernel.cpp Source/WebCore/webaudio/ConvolverNode.h Source/WebCore/webaudio/AudioGainNode.cpp Source/WebCore/webaudio/AudioDestinationNode.cpp Source/WebCore/webaudio/DelayNode.cpp Source/WebCore/webaudio/AudioGainNode.idl Source/WebCore/webaudio/HighPass2FilterNode.h Source/WebCore/webaudio/AudioPannerNode.h Source/WebCore/webaudio/DelayNode.idl Source/WebCore/webaudio/AudioBufferSourceNode.idl Source/WebCore/webaudio/AudioBasicProcessorNode.h Source/WebCore/webaudio/AudioProcessingEvent.cpp Source/WebCore/inspector/InspectorStyleSheet.h Source/WebCore/inspector/InspectorCSSAgent.h Source/WebCore/inspector/InspectorCSSAgent.cpp Source/WebCore/inspector/InspectorStyleSheet.cpp Source/JavaScriptCore/wtf/text/TextPosition.h Copyright: 2010, Google Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptControllerGtk.cpp Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Holger Hans Peter Freyther 2008 Collabora Ltd. 2008 Eric Seidel License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptProfiler.cpp Source/WebCore/bindings/js/ScriptProfile.cpp Source/WebCore/bindings/js/ScriptProfile.h Source/WebCore/bindings/js/JSScriptProfileNodeCustom.cpp Source/WebCore/bindings/js/ScriptProfiler.h Source/WebCore/bindings/js/ScriptProfileNode.h Source/WebCore/platform/graphics/cg/GraphicsContext3DCG.cpp Source/WebCore/platform/graphics/GraphicsContext3D.cpp Source/WebCore/inspector/InspectorApplicationCacheAgent.cpp Source/WebCore/inspector/ScriptProfileNode.idl Source/WebCore/inspector/ScriptProfile.idl Copyright: 2010 Apple Inc. 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/JSWebKitAnimationListCustom.cpp Source/WebCore/bindings/js/JSWebKitAnimationCustom.cpp Copyright: 2011 Apple Inc. All right reserved. License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptControllerQt.cpp Copyright: 2006 Dirk Mueller 2006 Zack Rusin 2006 George Staikos 2006 Simon Hausmann 2006 Rob Buis 2006 Nikolas Zimmermann 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Collabora Ltd. 2008 Eric Seidel License: BSD-2-clause Files: Source/WebCore/bindings/js/JSCustomXPathNSResolver.cpp Source/WebCore/bindings/js/JSCustomXPathNSResolver.h Source/WebCore/xml/NativeXPathNSResolver.h Source/WebCore/xml/NativeXPathNSResolver.cpp Copyright: 2007 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptControllerEfl.cpp Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel mike.emmel@gmail.com 2007 Holger Hans Peter Freyther 2008 Collabora Ltd. 2008 Eric Seidel 2009,2010 ProFUSION embedded systems 2009,2010 Samsung Electronics License: BSD-2-clause Files: Source/WebCore/bindings/js/JSAudioConstructor.cpp Source/WebCore/css/CSSFontFaceSource.cpp Source/WebCore/html/HTMLSourceElement.cpp Source/WebCore/html/HTMLSourceElement.h Copyright: 2007, 2008, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/JSWorkerContextBase.cpp Copyright: 2008, 2009 Apple Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptControllerBrew.cpp Copyright: 2008 Apple Computer, Inc. 2009 Company 100, Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/JSSVGElementInstanceCustom.cpp Copyright: 2008 Nikolas Zimmermann 2009 Apple, Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptControllerWin.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2008 Eric Seidel License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptControllerHaiku.cpp Source/WebCore/bindings/js/ScriptControllerWx.cpp Source/WebCore/platform/graphics/Generator.h Source/WebCore/platform/graphics/GeneratedImage.h Source/JavaScriptCore/API/JSBasePrivate.h Copyright: 2008 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/WorkerScriptController.cpp Source/WebCore/inspector/front-end/ScriptsPanel.js Source/WebCore/inspector/front-end/ScopeChainSidebarPane.js Copyright: 2008 Apple Inc. 2011 Google Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/JSWorkerContextCustom.cpp Copyright: 2008, 2009, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptControllerMac.mm Copyright: 2004, 2005, 2006, 2007, 2008 Apple Inc. 2006 Alexey Proskuryakov 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Eric Seidel License: BSD-2-clause Files: Source/WebCore/bindings/js/ScriptSourceProvider.h Copyright: 2009 Daniel Bates License: BSD-2-clause Files: Source/WebCore/bindings/js/JSCSSRuleListCustom.cpp Copyright: 2009 Apple Inc. All right reserved. License: BSD-2-clause Files: Source/WebCore/bindings/gobject/WebKitDOMEventTarget.cpp Copyright: 2010 Igalia S.L. License: BSD-2-clause Files: Source/WebCore/bindings/gobject/WebKitHTMLElementWrapperFactory.h Copyright: 2005 Apple Computer, Inc. 2010 Igalia S.L. License: BSD-2-clause Files: Source/WebCore/bindings/gobject/WebKitHTMLElementWrapperFactory.cpp Copyright: 2005 Apple Computer, Inc. 2008 Luke Kenneth Casson Leighton 2008 Martin Soto 2010 Igalia S.L. License: BSD-2-clause Files: Source/WebCore/bindings/cpp/WebDOMNodeFilterCustom.cpp Copyright: 2010. License: BSD-2-clause Files: Source/WebCore/bindings/scripts/InFilesParser.pm Copyright: 2008 Julien Chaffraix License: BSD-2-clause Files: Source/WebCore/bindings/scripts/test/ObjC/DOMTestObj.h Source/WebCore/bindings/scripts/test/ObjC/DOMTestSerializedScriptValueInterface.h Source/WebCore/bindings/scripts/test/ObjC/DOMTestInterface.h Source/WebCore/bindings/scripts/test/ObjC/DOMTestCallback.h Source/WebCore/bindings/scripts/test/ObjC/DOMTestMediaQueryListListener.h Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2006 Samuel Weinig License: BSD-2-clause Files: Source/WebCore/bindings/ScriptControllerBase.h Copyright: 2010 Research in Motion Limited. 2008 Apple Inc. 2008 Eric Seidel 2001 Peter Kelly 1999 Harri Porten License: BSD-2-clause Files: Source/WebCore/dom/TouchList.h Source/WebCore/dom/TouchEvent.h Source/WebCore/dom/TouchEvent.idl Source/WebCore/dom/TouchList.cpp Source/WebCore/dom/TouchEvent.cpp Source/WebCore/dom/Touch.h Source/WebCore/dom/Touch.idl Source/WebCore/dom/TouchList.idl Source/WebCore/dom/Touch.cpp Copyright: 2008, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/dom/BeforeTextInsertedEvent.cpp Source/WebCore/editing/DeleteSelectionCommand.cpp Source/WebCore/editing/BreakBlockquoteCommand.cpp Source/WebCore/editing/InsertTextCommand.cpp Copyright: 2005 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/dom/Position.cpp Source/WebCore/platform/PlatformMouseEvent.h Source/WebCore/platform/PlatformWheelEvent.h Copyright: 2004, 2005, 2006, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/dom/MessageEvent.cpp Copyright: 2007 Henry Mason 2003, 2005, 2006, 2007, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/dom/MessageEvent.idl Copyright: 2007 Henry Mason License: BSD-2-clause Files: Source/WebCore/dom/EventTarget.cpp Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007 Apple Inc. 2006 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/dom/MessageEvent.h Copyright: 2007 Henry Mason 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/dom/EventTarget.h Copyright: 1999 Lars Knoll 2004, 2005, 2006, 2007, 2008 Apple Inc. 2006 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/dom/MessageChannel.idl Source/WebCore/platform/PurgeableBuffer.h Source/WebCore/platform/mac/EmptyProtocolDefinitions.h Source/WebCore/css/CSSFunctionValue.cpp Source/WebCore/css/WebKitCSSMatrix.idl Source/WebCore/workers/Worker.idl Source/WebCore/workers/Worker.h Source/WebCore/xml/XMLHttpRequestProgressEvent.idl Source/JavaScriptCore/runtime/SmallStrings.cpp Source/JavaScriptCore/wtf/WTFThreadData.cpp Copyright: 2008, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/dom/Position.h Source/WebCore/platform/Cursor.h Source/WebCore/platform/text/TextCodecLatin1.cpp Source/WebCore/platform/mac/ClipboardMac.h Source/WebCore/platform/Scrollbar.cpp Source/WebCore/editing/htmlediting.h Source/WebCore/editing/EditingBoundary.h Copyright: 2004, 2006, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/rendering/RenderTreeAsText.cpp Source/WebCore/rendering/RenderHTMLCanvas.cpp Copyright: 2004, 2006, 2007 Apple Inc. License: BSD-2-clause Files: Source/WebCore/rendering/RenderTreeAsText.h Source/WebCore/platform/graphics/FontFamily.h Source/WebCore/platform/CookieJar.h Source/WebCore/platform/mac/CookieJar.mm Copyright: 2003, 2006, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/rendering/mathml/RenderMathMLSubSup.h Source/WebCore/rendering/mathml/RenderMathMLSubSup.cpp Source/WebCore/rendering/mathml/RenderMathMLRow.h Source/WebCore/rendering/mathml/RenderMathMLOperator.h Source/WebCore/rendering/mathml/RenderMathMLBlock.h Source/WebCore/rendering/mathml/RenderMathMLMath.h Source/WebCore/rendering/mathml/RenderMathMLRow.cpp Source/WebCore/rendering/mathml/RenderMathMLMath.cpp Copyright: 2010 Alex Milowski . License: BSD-2-clause Files: Source/WebCore/rendering/mathml/RenderMathMLFraction.cpp Source/WebCore/rendering/mathml/RenderMathMLSquareRoot.cpp Source/WebCore/rendering/mathml/RenderMathMLFraction.h Source/WebCore/rendering/mathml/RenderMathMLRoot.cpp Copyright: 2009 Alex Milowski . 2010 François Sausset . License: BSD-2-clause Files: Source/WebCore/rendering/mathml/RenderMathMLUnderOver.cpp Source/WebCore/rendering/mathml/RenderMathMLFenced.h Source/WebCore/rendering/mathml/RenderMathMLFenced.cpp Source/WebCore/rendering/mathml/RenderMathMLUnderOver.h Source/WebCore/rendering/mathml/RenderMathMLBlock.cpp Source/WebCore/rendering/mathml/RenderMathMLRoot.h Source/WebCore/rendering/mathml/RenderMathMLSquareRoot.h Copyright: 2009 Alex Milowski . License: BSD-2-clause Files: Source/WebCore/rendering/mathml/RenderMathMLOperator.cpp Copyright: 2010 Alex Milowski . 2010 François Sausset . License: BSD-2-clause Files: Source/WebCore/rendering/RenderMedia.cpp Source/WebCore/rendering/RenderVideo.cpp Source/WebCore/rendering/RenderMedia.h Source/WebCore/platform/graphics/win/UniscribeController.cpp Source/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeWin.h Source/WebCore/platform/graphics/win/UniscribeController.h Source/WebCore/html/HTMLVideoElement.cpp Source/WebCore/html/HTMLVideoElement.h Copyright: 2007, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/rendering/break_lines.cpp Copyright: 2005, 2007, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/rendering/RenderHTMLCanvas.h Copyright: 2004, 2006, 2007, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/rendering/svg/SVGRenderTreeAsText.h Copyright: 2004, 2005, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/rendering/svg/RenderSVGResourceFilterPrimitive.h Source/WebCore/platform/graphics/filters/FELighting.h Source/WebCore/platform/graphics/filters/FELighting.cpp Copyright: 2010 University of Szeged 2010 Zoltan Herczeg License: BSD-2-clause Files: Source/WebCore/rendering/svg/SVGRenderTreeAsText.cpp Copyright: 2004, 2005, 2007, 2009 Apple Inc. 2010. License: BSD-2-clause Files: Source/WebCore/rendering/svg/RenderSVGResourceFilterPrimitive.cpp Copyright: 2010 University of Szeged 2010 Zoltan Herczeg 2011 Renata Hodovan License: BSD-2-clause Files: Source/WebCore/rendering/RenderObjectChildList.cpp Copyright: 2009, 2010 Apple Inc. 2010. License: BSD-2-clause Files: Source/WebCore/mathml/MathMLMathElement.h Source/WebCore/mathml/MathMLTextElement.h Source/WebCore/mathml/MathMLInlineContainerElement.h Source/WebCore/mathml/MathMLTextElement.cpp Source/WebCore/mathml/MathMLInlineContainerElement.cpp Source/WebCore/mathml/MathMLMathElement.cpp Copyright: 2009 Alex Milowski . 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/mathml/MathMLElement.cpp Source/WebCore/mathml/MathMLElement.h Copyright: 2009 Alex Milowski . 2010 Apple Inc. 2010 François Sausset . License: BSD-2-clause Files: Source/WebCore/platform/LinkHash.h Source/WebCore/platform/graphics/qt/ImageBufferDataQt.h Copyright: 2008 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/cocoa/KeyEventCocoa.mm Source/WebCore/platform/network/ResourceHandle.cpp Copyright: 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/cocoa/KeyEventCocoa.h Source/WebKit2/Shared/WebMemorySampler.h Source/WebKit2/Shared/mac/WebMemorySampler.mac.mm Source/WebKit2/Shared/WebMemorySampler.cpp Copyright: 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/ContentType.cpp Copyright: 2006, 2008 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/Timer.cpp Source/WebCore/platform/network/ResourceResponseBase.h Source/WebCore/platform/network/ResourceResponseBase.cpp Source/WebCore/platform/ThreadTimers.cpp Copyright: 2006, 2008 Apple Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/ScrollView.h Copyright: 2004, 2006, 2007, 2008 Apple Inc. 2009 Holger Hans Peter Freyther License: BSD-2-clause Files: Source/WebCore/platform/FileSystem.cpp Copyright: 2007, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/RuntimeApplicationChecks.h Source/WebCore/platform/graphics/ca/win/AbstractCACFLayerTreeHost.h Source/JavaScriptCore/heap/MarkStack.cpp Source/JavaScriptCore/heap/MarkStack.h Copyright: 2009, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/SharedBuffer.h Copyright: 2006 Apple Computer, Inc. 2009-2010. License: BSD-2-clause Files: Source/WebCore/platform/ScrollableArea.h Source/WebCore/platform/PopupMenuStyle.h Source/WebCore/platform/mac/ScrollbarThemeMac.mm Copyright: 2008, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/DefaultLocalizationStrategy.cpp Source/WebCore/platform/DefaultLocalizationStrategy.h Source/WebCore/platform/mac/ScrollAnimatorMac.mm Source/WebCore/platform/mac/ScrollAnimatorMac.h Source/WebKit2/Shared/WebPageCreationParameters.h Source/WebKit2/Shared/API/c/WKURLRequest.cpp Source/WebKit2/Shared/WebBackForwardListItem.cpp Source/WebKit2/Shared/PlatformPopupMenuData.cpp Source/WebKit2/Shared/PlatformPopupMenuData.h Source/WebKit2/Shared/WebPreferencesStore.cpp Source/WebKit2/Shared/WebBackForwardListItem.h Source/WebKit2/Shared/WebCoreArgumentCoders.h Source/WebKit2/Shared/cg/ShareableBitmapCG.cpp Source/WebKit2/Shared/WebPreferencesStore.h Source/WebKit2/Shared/WebPopupItem.cpp Source/WebKit2/Shared/mac/WebEventFactory.mm Source/WebKit2/Shared/WebEvent.h Source/WebKit2/Shared/EditorState.h Source/WebKit2/PluginProcess/mac/PluginProcessMainMac.mm Source/WebKit2/Platform/Region.h Source/WebKit2/Platform/CoreIPC/ArgumentDecoder.cpp Source/WebKit2/Platform/Region.cpp Source/WebKit2/UIProcess/WebBackForwardList.h Source/WebKit2/UIProcess/API/C/WKBackForwardListItem.cpp Source/WebKit2/UIProcess/API/C/WKBackForwardListItem.h Source/WebKit2/UIProcess/API/C/WKContext.h Source/WebKit2/UIProcess/API/C/WKContext.cpp Source/WebKit2/UIProcess/API/C/WKPage.h Source/WebKit2/UIProcess/API/mac/PDFViewController.h Source/WebKit2/UIProcess/API/mac/PDFViewController.mm Source/WebKit2/UIProcess/API/mac/WKView.mm Source/WebKit2/UIProcess/API/mac/PageClientImpl.mm Source/WebKit2/UIProcess/API/mac/PageClientImpl.h Source/WebKit2/UIProcess/PageClient.h Source/WebKit2/UIProcess/WebContext.h Source/WebKit2/UIProcess/WebPageProxy.cpp Source/WebKit2/UIProcess/WebPreferences.cpp Source/WebKit2/UIProcess/WebUIClient.h Source/WebKit2/UIProcess/WebPreferences.h Source/WebKit2/UIProcess/WebPageProxy.h Source/WebKit2/UIProcess/WebProcessProxy.messages.in Source/WebKit2/UIProcess/WebPageProxy.messages.in Source/WebKit2/UIProcess/WebContext.cpp Source/WebKit2/UIProcess/WebPopupMenuProxy.h Source/WebKit2/UIProcess/Authentication/WebCredential.cpp Source/WebKit2/UIProcess/mac/WebPopupMenuProxyMac.mm Source/WebKit2/UIProcess/mac/WebPageProxyMac.mm Source/WebKit2/UIProcess/mac/WebPreferencesMac.mm Source/WebKit2/UIProcess/mac/TextCheckerMac.mm Source/WebKit2/UIProcess/WebProcessProxy.cpp Source/WebKit2/UIProcess/WebProcessProxy.h Source/WebKit2/UIProcess/DrawingAreaProxy.messages.in Source/WebKit2/UIProcess/WebUIClient.cpp Source/WebKit2/UIProcess/cf/WebPageProxyCF.cpp Source/WebKit2/UIProcess/cf/WebBackForwardListCF.cpp Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePagePrivate.h Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePage.cpp Source/WebKit2/WebProcess/Downloads/Download.cpp Source/WebKit2/WebProcess/Downloads/Download.h Source/WebKit2/WebProcess/Downloads/cfnet/DownloadCFNet.cpp Source/WebKit2/WebProcess/Downloads/mac/DownloadMac.mm Source/WebKit2/WebProcess/Downloads/qt/DownloadQt.cpp Source/WebKit2/WebProcess/WebCoreSupport/WebPlatformStrategies.cpp Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp Source/WebKit2/WebProcess/WebCoreSupport/WebFrameLoaderClient.h Source/WebKit2/WebProcess/WebCoreSupport/mac/WebPopupMenuMac.mm Source/WebKit2/WebProcess/mac/WebProcessMainMac.mm Source/WebKit2/WebProcess/WebPage/WebPage.cpp Source/WebKit2/WebProcess/WebPage/WebPage.messages.in Source/WebKit2/WebProcess/WebPage/WebBackForwardListProxy.h Source/WebKit2/WebProcess/WebPage/WebPage.h Source/WebKit2/WebProcess/WebPage/WebBackForwardListProxy.cpp Source/WebKit2/WebProcess/WebPage/mac/WebPageMac.mm Source/WebKit2/WebProcess/WebPage/DrawingArea.messages.in Source/WebKit2/Configurations/PluginProcess.xcconfig Copyright: 2010, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/sql/SQLiteDatabase.h Source/WebCore/platform/sql/SQLiteDatabase.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2007 Justin Haygood License: BSD-2-clause Files: Source/WebCore/platform/Widget.h Copyright: 2004, 2005, 2006 Apple Computer, Inc. 2008 Collabora Ltd. License: BSD-2-clause Files: Source/WebCore/platform/network/ResourceRequestBase.h Copyright: 2003, 2006 Apple Computer, Inc. 2006 Samuel Weinig 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/network/DataURL.h Source/WebCore/platform/graphics/win/GDIExtras.cpp Source/WebCore/platform/graphics/win/GDIExtras.h Source/WebKit/wince/WebView.h Source/WebKit/wince/WebCoreSupport/PlatformStrategiesWinCE.h Source/WebKit/wince/WebCoreSupport/ContextMenuClientWinCE.h Source/WebKit/wince/WebCoreSupport/ChromeClientWinCE.cpp Source/WebKit/wince/WebCoreSupport/InspectorClientWinCE.cpp Source/WebKit/wince/WebCoreSupport/ChromeClientWinCE.h Source/WebKit/wince/WebCoreSupport/FrameNetworkingContextWinCE.cpp Source/WebKit/wince/WebCoreSupport/InspectorClientWinCE.h Source/WebKit/wince/WebCoreSupport/DragClientWinCE.h Source/WebKit/wince/WebCoreSupport/DragClientWinCE.cpp Source/WebKit/wince/WebCoreSupport/EditorClientWinCE.h Source/WebKit/wince/WebCoreSupport/ContextMenuClientWinCE.cpp Source/WebKit/wince/WebCoreSupport/FrameNetworkingContextWinCE.h Copyright: 2010 Patrick Gansterer License: BSD-2-clause Files: Source/WebCore/platform/network/ResourceHandle.h Source/WebCore/platform/network/ResourceHandleInternal.h Source/WebCore/platform/Scrollbar.h Source/WebCore/platform/text/TextCodecUTF16.h Source/WebCore/platform/text/TextCodecLatin1.h Source/WebCore/platform/text/TextBoundaries.h Source/WebCore/platform/mac/PlatformMouseEventMac.mm Source/WebCore/bridge/npruntime.cpp Source/WebCore/bridge/NP_jsobject.h Source/WebCore/bridge/NP_jsobject.cpp Source/WebCore/bridge/c/c_runtime.h Copyright: 2004, 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/network/HTTPHeaderMap.h Source/WebCore/platform/network/ResourceErrorBase.cpp Source/WebCore/platform/ThreadTimers.h Source/WebCore/platform/ContentType.h Copyright: 2006 Apple Computer, Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/network/ResourceRequestBase.cpp Copyright: 2003, 2006 Apple Computer, Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/network/qt/ResourceRequest.h Copyright: 2003, 2006 Apple Computer, Inc. 2006 Samuel Weinig License: BSD-2-clause Files: Source/WebCore/platform/network/qt/ResourceHandleQt.cpp Copyright: 2006 Nikolas Zimmermann 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Holger Hans Peter Freyther License: BSD-2-clause Files: Source/WebCore/platform/network/DNS.h Copyright: 2008 Collin Jackson License: BSD-2-clause Files: Source/WebCore/platform/network/DataURL.cpp Copyright: 2007 Alp Toker 2010 Patrick Gansterer License: BSD-2-clause Files: Source/WebCore/platform/MIMETypeRegistry.cpp Copyright: 2006, 2008, 2009 Apple Inc. 2008, 2009 Torch Mobile Inc. (http://www.torchmobile.com/) License: BSD-2-clause Files: Source/WebCore/platform/Cookie.h Copyright: 2009 Joseph Pecoraro. License: BSD-2-clause Files: Source/WebCore/platform/graphics/Gradient.h Copyright: 2006, 2007, 2008, 2011 Apple Inc. 2007 Alp Toker 2008 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/FloatRect.cpp Source/WebCore/platform/graphics/FloatRect.h Copyright: 2003, 2006, 2007 Apple Inc. 2005 Nokia. License: BSD-2-clause Files: Source/WebCore/platform/graphics/filters/arm/FELightingNEON.h Source/WebCore/platform/graphics/filters/arm/FEGaussianBlurNEON.cpp Source/WebCore/platform/graphics/filters/arm/FELightingNEON.cpp Source/WebCore/platform/graphics/filters/arm/FEGaussianBlurNEON.h Copyright: 2011 University of Szeged 2011 Zoltan Herczeg License: BSD-2-clause Files: Source/WebCore/platform/graphics/filters/SpotLightSource.cpp Copyright: 2008 Alex Mathews 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2010 Zoltan Herczeg 2011 University of Szeged 2011 Renata Hodovan License: BSD-2-clause Files: Source/WebCore/platform/graphics/filters/DistantLightSource.cpp Source/WebCore/platform/graphics/filters/PointLightSource.cpp Copyright: 2004, 2005, 2006, 2007 Nikolas Zimmermann 2004, 2005 Rob Buis 2005 Eric Seidel 2010 Zoltan Herczeg 2011 University of Szeged 2011 Renata Hodovan License: BSD-2-clause Files: Source/WebCore/platform/graphics/RoundedIntRect.cpp Source/WebCore/platform/graphics/RoundedIntRect.h Copyright: 2003, 2006, 2009 Apple Inc. 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/ImageBuffer.cpp Source/WebCore/svg/SVGFEMorphologyElement.idl Source/WebCore/svg/SVGFEConvolveMatrixElement.idl Copyright: 2009 Dirk Schulze License: BSD-2-clause Files: Source/WebCore/platform/graphics/Path.h Copyright: 2003, 2006, 2009 Apple Inc. 2007-2008 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/opentype/OpenTypeUtilities.h Source/WebCore/platform/graphics/opentype/OpenTypeUtilities.cpp Copyright: 2008, 2009 Apple Inc. 2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/Image.cpp Source/WebCore/platform/graphics/Image.h Copyright: 2006 Samuel Weinig 2004, 2005, 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/transforms/TransformationMatrix.h Source/WebCore/platform/graphics/transforms/AffineTransform.cpp Source/WebCore/platform/graphics/transforms/AffineTransform.h Source/WebCore/css/svg.css Source/WebCore/editing/InsertParagraphSeparatorCommand.cpp Source/WebCore/editing/InsertLineBreakCommand.cpp Source/WebCore/editing/MoveSelectionCommand.cpp Copyright: 2005, 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/transforms/TransformationMatrix.cpp Copyright: 2005, 2006 Apple Computer, Inc. 2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/IntPoint.h Source/WebCore/platform/graphics/cg/PDFDocumentImage.h Source/WebCore/platform/graphics/cg/IntPointCG.cpp Source/WebCore/platform/graphics/cg/PDFDocumentImage.cpp Source/WebCore/platform/graphics/mac/IntPointMac.mm Source/WebCore/platform/graphics/ImageObserver.h Source/WebCore/platform/graphics/GraphicsTypes.h Source/WebCore/editing/VisibleSelection.cpp Copyright: 2004, 2005, 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/MediaPlayer.cpp Source/WebCore/platform/graphics/MediaPlayer.h Source/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.h Source/WebCore/platform/graphics/mac/MediaPlayerPrivateQTKit.mm Source/WebCore/platform/graphics/mac/MediaPlayerPrivateQTKit.h Source/WebCore/platform/graphics/mac/ComplexTextController.cpp Source/WebCore/html/HTMLMediaElement.cpp Source/WebCore/html/HTMLMediaElement.h Copyright: 2007, 2008, 2009, 2010, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/Color.cpp Copyright: 2003, 2004, 2005, 2006, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/BitmapImage.cpp Copyright: 2006 Samuel Weinig 2004, 2005, 2006, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/IntSize.h Source/WebCore/platform/graphics/cg/IntSizeCG.cpp Source/WebCore/platform/graphics/mac/IntSizeMac.mm Source/WebCore/platform/graphics/mac/ColorMac.mm Copyright: 2003, 2004, 2005, 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/gpu/qt/DrawingBufferQt.cpp Copyright: 2011 Andrew Wason License: BSD-2-clause Files: Source/WebCore/platform/graphics/GraphicsContext.h Copyright: 2003, 2006, 2007, 2008, 2009 Apple Inc. 2008-2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/IntRect.cpp Source/WebCore/platform/graphics/IntRect.h Copyright: 2003, 2006, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/PathTraversalState.h Copyright: 2006, 2007 Eric Seidel License: BSD-2-clause Files: Source/WebCore/platform/graphics/GraphicsContext.cpp Copyright: 2003, 2004, 2005, 2006, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/BitmapImage.h Copyright: 2006 Samuel Weinig 2004, 2005, 2006 Apple Computer, Inc. 2008-2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/ShadowBlur.cpp Copyright: 2011 Apple Inc. 2010 Sencha, Inc. 2010 Igalia S.L. 2011. License: BSD-2-clause Files: Source/WebCore/platform/graphics/ContextShadow.h Source/WebCore/platform/graphics/ContextShadow.cpp Copyright: 2010 Sencha, Inc. 2010 Igalia S.L. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/ImageSourceCG.cpp Source/WebCore/platform/graphics/mac/ImageMac.mm Copyright: 2004, 2005, 2006, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/TransformationMatrixCG.cpp Copyright: 2005, 2006, 2007 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/ImageBufferCG.cpp Copyright: 2006 Nikolas Zimmermann 2008 Apple Inc. 2010 Torch Mobile (Beijing) Co. Ltd. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/ImageBufferDataCG.h Copyright: 2011 Apple Inc. 2008 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/FloatSizeCG.cpp Source/WebCore/platform/graphics/cg/FloatRectCG.cpp Source/WebCore/platform/graphics/mac/FloatSizeMac.mm Source/WebCore/platform/graphics/mac/FloatRectMac.mm Source/WebCore/platform/graphics/FloatSize.h Source/WebCore/platform/graphics/FloatSize.cpp Copyright: 2003, 2006 Apple Computer, Inc. 2005 Nokia. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/GradientCG.cpp Source/WebCore/platform/graphics/qt/GradientQt.cpp Source/WebCore/html/canvas/CanvasGradient.h Copyright: 2006, 2007, 2008 Apple Computer, Inc. 2007 Alp Toker License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/ColorCG.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/PatternCG.cpp Source/WebCore/platform/graphics/Pattern.cpp Copyright: 2006, 2007, 2008 Apple Computer, Inc. 2008 Eric Seidel License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/GraphicsContextCG.cpp Copyright: 2003, 2004, 2005, 2006, 2007 Apple Inc. 2008 Eric Seidel License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/ImageCG.cpp Copyright: 2004, 2005, 2006 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/GraphicsContextCG.h Copyright: 2006, 2007, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/cg/FloatPointCG.cpp Source/WebCore/platform/graphics/mac/FloatPointMac.mm Copyright: 2004, 2006 Apple Computer, Inc. 2005 Nokia. License: BSD-2-clause Files: Source/WebCore/platform/graphics/Path.cpp Copyright: 2003, 2006 Apple Computer, Inc. 2007 Eric Seidel License: BSD-2-clause Files: Source/WebCore/platform/graphics/FloatPoint.h Source/WebCore/platform/graphics/FloatPoint.cpp Copyright: 2004, 2006, 2007 Apple Inc. 2005 Nokia. License: BSD-2-clause Files: Source/WebCore/platform/graphics/Pattern.h Copyright: 2006, 2007, 2008 Apple Computer, Inc. 2008 Eric Seidel 2007-2008 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/QTDecompressionSession.cpp Source/WebCore/platform/graphics/win/QTDecompressionSession.h Copyright: 2010 Apple, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/QTMovieWinTimer.h Source/JavaScriptCore/API/JSStringRefCF.cpp Source/JavaScriptCore/API/JSStringRefCF.h Copyright: 2006, 2007 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp Source/WebCore/platform/graphics/win/QTMovie.cpp Copyright: 2007, 2008, 2009, 2010, 2011 Apple, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/QTMovieGWorld.h Source/WebCore/platform/graphics/win/QTCFDictionary.h Source/WebCore/platform/graphics/win/QTMovieTask.h Source/WebCore/platform/graphics/win/QTPixelBuffer.h Source/WebCore/platform/graphics/win/QTMovie.h Source/WebCore/platform/graphics/win/QTTrack.h Source/WebCore/platform/graphics/win/MediaPlayerPrivateQuickTimeWin.cpp Source/WebCore/platform/graphics/win/QTMovieTask.cpp Source/WebCore/platform/graphics/win/QTMovieVisualContext.cpp Source/WebCore/platform/graphics/win/QTPixelBuffer.cpp Source/WebCore/platform/graphics/win/QTTrack.cpp Source/WebCore/platform/graphics/win/QTMovieGWorld.cpp Source/WebCore/platform/graphics/win/QTCFDictionary.cpp Source/WebCore/platform/graphics/win/QTMovieVisualContext.h Copyright: 2007, 2008, 2009, 2010 Apple, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/QTMovieWinTimer.cpp Copyright: 2006, 2007, 2009 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/FullScreenController.cpp Copyright: 2006, 2007, 2008, 2009, 2011 Apple Inc. 2009. License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/GraphicsContextWin.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/DIBPixelData.h Source/WebCore/platform/graphics/win/DIBPixelData.cpp Copyright: 2011 Brent Fulgham License: BSD-2-clause Files: Source/WebCore/platform/graphics/win/GraphicsContextCGWin.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/mac/GraphicsContextMac.mm Source/WebCore/platform/graphics/Color.h Copyright: 2003, 2004, 2005, 2006, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/mac/ComplexTextController.h Copyright: 2007, 2008, 2009, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/DashArray.h Copyright: 2008 Dirk Schulze License: BSD-2-clause Files: Source/WebCore/platform/graphics/ImageBuffer.h Copyright: 2006 Nikolas Zimmermann 2007, 2008, 2009 Apple Inc. 2010 Torch Mobile (Beijing) Co. Ltd. License: BSD-2-clause Files: Source/WebCore/platform/graphics/ImageSource.h Copyright: 2004, 2005, 2006 Apple Computer, Inc. 2007-2008 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/ImageSource.cpp Copyright: 2006 Apple Computer, Inc. 2007 Alp Toker 2008, Google Inc. 2007-2009 Torch Mobile, Inc License: BSD-2-clause Files: Source/WebCore/platform/graphics/FontFamily.cpp Source/WebCore/platform/text/TextStream.h Source/WebCore/platform/mac/KURLMac.mm Source/WebCore/platform/cf/KURLCFNet.cpp Source/WebCore/editing/HTMLInterchange.cpp Source/WebCore/editing/VisiblePosition.h Source/WebCore/editing/HTMLInterchange.h Copyright: 2004, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/FloatRectQt.cpp Source/WebCore/platform/graphics/qt/PathQt.cpp Source/WebCore/platform/graphics/qt/FloatPointQt.cpp Source/WebCore/platform/graphics/qt/ColorQt.cpp Source/WebCore/platform/graphics/qt/IntPointQt.cpp Source/WebCore/platform/graphics/qt/IntRectQt.cpp Source/WebCore/platform/text/qt/TextBoundariesQt.cpp Source/WebCore/platform/qt/PlatformMouseEventQt.cpp Source/WebKit/qt/WebCoreSupport/ContextMenuClientQt.cpp Source/WebKit/qt/WebCoreSupport/ContextMenuClientQt.h Copyright: 2006 Zack Rusin License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/ImageDecoderQt.cpp Source/WebCore/platform/graphics/qt/ImageDecoderQt.h Copyright: 2006 Friedemann Kleint 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/PatternQt.cpp Copyright: 2008 Eric Seidel License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/ImageBufferQt.cpp Copyright: 2006 Nikolas Zimmermann 2008 Holger Hans Peter Freyther 2009 Dirk Schulze 2010 Torch Mobile (Beijing) Co. Ltd. License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/TransparencyLayer.h Copyright: 2006 Dirk Mueller 2006 Zack Rusin 2006 George Staikos 2006 Simon Hausmann 2006 Allan Sandfeld Jensen 2006 Nikolas Zimmermann 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies). 2008 Dirk Schulze License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/GraphicsContextQt.cpp Copyright: 2006 Dirk Mueller 2006 Zack Rusin 2006 George Staikos 2006 Simon Hausmann 2006 Allan Sandfeld Jensen 2006 Nikolas Zimmermann 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies). 2008 Dirk Schulze 2010, 2011 Sencha, Inc. 2011 Andreas Kling License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/StillImageQt.cpp Source/WebCore/platform/graphics/qt/StillImageQt.h Source/WebCore/platform/qt/SharedBufferQt.cpp Copyright: 2008 Holger Hans Peter Freyther License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/TransformationMatrixQt.cpp Source/WebCore/platform/graphics/qt/IntSizeQt.cpp Source/WebCore/platform/qt/PlatformKeyboardEventQt.cpp Source/WebCore/platform/qt/SoundQt.cpp Source/JavaScriptCore/wtf/qt/StringQt.cpp Copyright: 2006 Nikolas Zimmermann License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/ContextShadowQt.cpp Copyright: 2010 Sencha, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/qt/ImageQt.cpp Copyright: 2006 Dirk Mueller 2006 Zack Rusin 2006 Simon Hausmann 2009 Torch Mobile Inc. http://www.torchmobile.com/ 2010 Sencha, Inc. License: BSD-2-clause Files: Source/WebCore/platform/graphics/ShadowBlur.h Copyright: 2011 Apple Inc. 2010 Sencha, Inc. 2010 Igalia S.L. License: BSD-2-clause Files: Source/WebCore/platform/graphics/Gradient.cpp Copyright: 2006, 2007, 2008, 2010 Apple Inc. 2007 Alp Toker License: BSD-2-clause Files: Source/WebCore/platform/graphics/MediaPlayerPrivate.h Source/WebCore/css/mediaControls.css Source/WebCore/css/mediaControlsQuickTime.css Source/ThirdParty/ANGLE/Configurations/CompilerVersion.xcconfig Source/WebKit2/UIProcess/mac/WKFullScreenWindowController.mm Source/WebKit2/Configurations/CompilerVersion.xcconfig Copyright: 2009, 2010, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/image-decoders/ImageDecoder.h Copyright: 2006 Apple Computer, Inc. 2008-2009 Torch Mobile, Inc. 2009-2010. 2009 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/platform/image-decoders/qt/ImageFrameQt.cpp Copyright: 2006 Apple Computer, Inc. 2008, 2009 Google, Inc. 2009 Holger Hans Peter Freyther License: BSD-2-clause Files: Source/WebCore/platform/PlatformKeyboardEvent.h Copyright: 2004, 2005, 2006 Apple Computer, Inc. 2008 Collabora, Ltd. License: BSD-2-clause Files: Source/WebCore/platform/LocalizedStrings.cpp Copyright: 2003, 2006, 2009, 2010 Apple Inc. 2010 Igalia S.L License: BSD-2-clause Files: Source/WebCore/platform/SharedBuffer.cpp Copyright: 2006, 2008 Apple Inc. 2009-2010. License: BSD-2-clause Files: Source/WebCore/platform/KURL.h Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/Widget.cpp Copyright: 2004, 2005, 2006, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/KURL.cpp Copyright: 2004, 2007, 2008, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/posix/SharedBufferPOSIX.cpp Copyright: 2010 Company 100, Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/TextCodec.cpp Source/WebCore/platform/text/TextCodec.h Source/WebCore/platform/text/mac/TextCodecMac.h Source/WebCore/bridge/c/c_utility.cpp Copyright: 2004, 2006 Apple Computer, Inc. 2006 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/platform/text/TextCodecUTF16.cpp Copyright: 2004, 2006, 2008, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/RegularExpression.cpp Copyright: 2004, 2008, 2009 Apple Inc. 2008 Collabora Ltd. 2011 Peter Varga , University of Szeged License: BSD-2-clause Files: Source/WebCore/platform/text/TextEncodingRegistry.cpp Copyright: 2006, 2007, 2011 Apple Inc. 2007-2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/TextCheckerClient.h Copyright: 2006, 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/TextCodecUTF8.cpp Copyright: 2004, 2006, 2008, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/TextCodecICU.h Copyright: 2004, 2006, 2007, 2011 Apple Inc. 2006 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/platform/text/TextCodecASCIIFastPath.h Copyright: 2011 Apple Inc. 2011 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebCore/platform/text/RegularExpression.h Source/WebCore/bridge/runtime_object.cpp Source/WebCore/bridge/runtime_object.h Copyright: 2003, 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/TextEncoding.cpp Copyright: 2004, 2006, 2007, 2008, 2009 Apple Inc. 2006 Alexey Proskuryakov 2007-2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/SuffixTree.h Source/WebCore/html/parser/HTMLSourceTracker.cpp Source/WebCore/html/parser/HTMLSourceTracker.h Copyright: 2010 Adam Barth. License: BSD-2-clause Files: Source/WebCore/platform/text/TextCodecICU.cpp Copyright: 2004, 2006, 2007, 2008, 2011 Apple Inc. 2006 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/platform/text/TextCodecUserDefined.cpp Copyright: 2007, 2008 Apple, Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/Base64.h Copyright: 2006 Alexey Proskuryakov 2010 Patrick Gansterer License: BSD-2-clause Files: Source/WebCore/platform/text/TextCodecUserDefined.h Copyright: 2007 Apple, Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/wince/TextCodecWinCE.cpp Copyright: 2007-2009 Torch Mobile, Inc. 2010-2011 Patrick Gansterer License: BSD-2-clause Files: Source/WebCore/platform/text/wince/TextCodecWinCE.h Copyright: 2004, 2006, 2007 Apple Inc. 2006 Alexey Proskuryakov 2007-2009 Torch Mobile, Inc. 2010 Patrick Gansterer License: BSD-2-clause Files: Source/WebCore/platform/text/TextOrientation.h Copyright: 2011 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/mac/TextCodecMac.cpp Copyright: 2004, 2006, 2008 Apple Inc. 2006 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/platform/text/mac/TextBoundaries.mm Copyright: 2004, 2006, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/TextBoundaries.cpp Copyright: 2006, 2007 Apple Inc. 2009 Dominik Röttsches License: BSD-2-clause Files: Source/WebCore/platform/text/TextStream.cpp Copyright: 2004, 2008, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/qt/TextCodecQt.h Copyright: 2006 Lars Knoll License: BSD-2-clause Files: Source/WebCore/platform/text/qt/TextCodecQt.cpp Copyright: 2006 Lars Knoll 2008 Holger Hans Peter Freyther License: BSD-2-clause Files: Source/WebCore/platform/text/TextEncoding.h Copyright: 2004, 2006, 2007, 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/win/BitmapInfo.h Source/WebCore/platform/win/BitmapInfo.cpp Copyright: 2009 Apple Inc. 2009 Brent Fulgham 2007-2009 Torch Mobile, Inc. 2010 Patrick Gansterer License: BSD-2-clause Files: Source/WebCore/platform/mac/MIMETypeRegistryMac.mm Copyright: 2006 Apple Computer, Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/platform/mac/WebNSAttributedStringExtras.mm Copyright: 2005, 2007, 2008, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/WebNSAttributedStringExtras.h Copyright: 2005, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/SharedTimerMac.mm Source/WebCore/editing/DeleteButton.cpp Source/WebCore/editing/ModifySelectionListLevel.h Source/WebCore/editing/DeleteButton.h Source/WebCore/editing/InsertListCommand.cpp Source/JavaScriptCore/wtf/StringExtras.h Copyright: 2006, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/ScrollViewMac.mm Copyright: 2004, 2006, 2007, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/Language.mm Copyright: 2003, 2005, 2006, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/WebCoreSystemInterface.mm Source/WebCore/platform/qt/WebCoreSystemInterface.mm Copyright: 2006, 2007, 2008, 2009, 2010 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/WheelEventMac.mm Copyright: 2004, 2006, 2010, 2011 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/WebCoreSystemInterface.h Source/WebCore/platform/qt/WebCoreSystemInterface.h Source/JavaScriptCore/wtf/MathExtras.h Source/WebKit2/WebProcess/WebCoreSupport/mac/WebSystemInterface.mm Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/WebFontCache.h Copyright: 2006, 2008 Apple Inc. 2007 Nicholas Shanks License: BSD-2-clause Files: Source/WebCore/platform/mac/BlockExceptions.mm Copyright: 2003, 2007 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/WidgetMac.mm Copyright: 2004, 2005, 2006, 2008, 2010, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/FoundationExtras.h Copyright: 2004 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/ClipboardMac.mm Copyright: 2004, 2005, 2006, 2008, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/CursorMac.mm Copyright: 2004, 2006, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/KeyEventMac.mm Copyright: 2004, 2006, 2007, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/mac/SSLKeyGeneratorMac.cpp Copyright: 2003, 2005, 2008, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/LocalizedStrings.h Copyright: 2003, 2006, 2009, 2011 Apple Inc. 2010 Igalia S.L License: BSD-2-clause Files: Source/WebCore/platform/LocalizationStrategy.h Copyright: 2010 Apple Inc. 2010 Igalia S.L License: BSD-2-clause Files: Source/WebCore/platform/qt/ScrollbarThemeQt.cpp Source/WebCore/platform/qt/ScrollbarQt.cpp Copyright: 2007, 2008 Apple Inc. 2007 Staikos Computing Services Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/platform/qt/ScrollViewQt.cpp Copyright: 2006, 2008 Apple Inc. 2006 Dirk Mueller 2006 Zack Rusin 2006 George Staikos 2006 Nikolas Zimmermann License: BSD-2-clause Files: Source/WebCore/platform/qt/DataTransferItemsQt.h Source/WebCore/platform/qt/DataTransferItemQt.h Source/WebCore/platform/qt/DataTransferItemQt.cpp Source/WebCore/platform/qt/DataTransferItemsQt.cpp Source/WebCore/css/mediaControlsQtFullscreen.css Copyright: 2011 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/platform/qt/SharedTimerQt.cpp Copyright: 2006 George Staikos 2006 Dirk Mueller 2008 Holger Hans Peter Freyther License: BSD-2-clause Files: Source/WebCore/platform/qt/ContextMenuQt.cpp Source/WebCore/platform/qt/ContextMenuItemQt.cpp Copyright: 2006 Zack Rusin 2007 Staikos Computing Services Inc. License: BSD-2-clause Files: Source/WebCore/platform/qt/ScreenQt.cpp Copyright: 2006 Dirk Mueller License: BSD-2-clause Files: Source/WebCore/platform/qt/CursorQt.cpp Copyright: 2006 Dirk Mueller 2006 George Staikos 2006 Charles Samuels 2008, 2009 Holger Hans Peter Freyther 2010 University of Szeged License: BSD-2-clause Files: Source/WebCore/platform/qt/MIMETypeRegistryQt.cpp Copyright: 2006 Zack Rusin 2006 Apple Computer, Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: BSD-2-clause Files: Source/WebCore/platform/qt/WidgetQt.cpp Copyright: 2006 Dirk Mueller 2006 George Staikos 2006 Zack Rusin 2006 Nikolas Zimmermann 2008 Holger Hans Peter Freyther License: BSD-2-clause Files: Source/WebCore/platform/qt/ClipboardQt.cpp Copyright: 2007 Apple Inc. 2006, 2007 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2010 Sencha, Inc. License: BSD-2-clause Files: Source/WebCore/platform/qt/CookieJarQt.cpp Copyright: 2006 George Staikos License: BSD-2-clause Files: Source/WebCore/platform/qt/PlatformBridge.h Copyright: 2009, 2010, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/platform/qt/LanguageQt.cpp Copyright: 2010 INdT - Instituto Nokia de Tecnologia 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/platform/qt/TemporaryLinkStubsQt.cpp Copyright: 2006, 2007 Apple Inc. 2006 Michael Emmel mike.emmel@gmail.com 2006 George Staikos 2006 Dirk Mueller 2006 Nikolas Zimmermann 2008 Collabora, Ltd. License: BSD-2-clause Files: Source/WebCore/platform/qt/QWebPageClient.h Copyright: 2009 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/platform/NotImplemented.h Source/WebCore/css/CSSTimingFunctionValue.cpp Source/WebCore/html/HTMLParserErrorCodes.cpp Source/WebCore/html/HTMLParserErrorCodes.h Copyright: 2007 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/platform/ContextMenuItem.h Copyright: 2006 Apple Computer, Inc. 2010 Igalia S.L License: BSD-2-clause Files: Source/WebCore/css/MediaQueryEvaluator.cpp Source/WebCore/css/MediaQueryEvaluator.h Copyright: 2006 Kimmo Kinnunen . License: BSD-2-clause Files: Source/WebCore/css/CSSRuleList.idl Source/WebCore/html/canvas/CanvasRenderingContext2D.h Copyright: 2006, 2007, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/css/RGBColor.cpp Copyright: 2008, 2009 Google, Inc. 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/css/CSSPrimitiveValueMappings.h Copyright: 2007 Alexey Proskuryakov . 2008, 2009, 2010 Apple Inc. 2009 Torch Mobile Inc. (http://www.torchmobile.com/) 2009 Jeff Schiller 2010. License: BSD-2-clause Files: Source/WebCore/css/MediaQueryExp.cpp Source/WebCore/css/MediaQueryExp.h Source/WebCore/css/MediaQuery.h Copyright: 2006 Kimmo Kinnunen . 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebCore/css/StyleMedia.h Source/WebCore/css/StyleMedia.idl Copyright: 2009 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/css/RGBColor.h Copyright: 2006, 2007, 2008, 2009 Google, Inc. 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/css/mediaControlsEfl.css Copyright: 2009, 2010, 2011 Apple Inc. 2011 Samsung Electronics License: BSD-2-clause Files: Source/WebCore/css/MediaQuery.cpp Copyright: 2005, 2006 Kimmo Kinnunen . 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebCore/css/CSSFontFaceSrcValue.cpp Source/WebCore/html/HTMLSourceElement.idl Source/WebCore/html/HTMLMediaElement.idl Source/WebCore/html/HTMLVideoElement.idl Source/WebCore/html/TimeRanges.idl Copyright: 2007, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/css/CSSSelectorList.cpp Source/WebCore/workers/WorkerMessagingProxy.cpp Copyright: 2008 Apple Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/css/mediaControlsQt.css Copyright: 2009 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/workers/WorkerContext.cpp Copyright: 2008 Apple Inc. 2009, 2011 Google Inc. License: BSD-2-clause Files: Source/WebCore/workers/WorkerScriptLoader.h Source/WebCore/workers/WorkerScriptLoader.cpp Copyright: 2009 Apple Inc. 2009, 2011 Google Inc. License: BSD-2-clause Files: Source/WebCore/workers/Worker.cpp Copyright: 2008, 2010 Apple Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/accessibility/AXObjectCache.h Copyright: 2003, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/storage/IDBDatabase.idl Source/WebCore/storage/IDBTransaction.idl Copyright: 2010 Google Inc. 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/history/BackForwardListImpl.h Source/WebCore/history/BackForwardList.h Copyright: 2006, 2010 Apple Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) 2009 Google, Inc. License: BSD-2-clause Files: Source/WebCore/history/HistoryItem.h Copyright: 2006, 2008, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/history/BackForwardListImpl.cpp Copyright: 2005, 2006 Apple Computer, Inc. 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: BSD-2-clause Files: Source/WebCore/history/HistoryItem.cpp Copyright: 2005, 2006, 2008, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/generated/HTMLElementFactory.cpp Source/WebCore/generated/SVGNames.h Source/WebCore/generated/SVGNames.cpp Source/WebCore/generated/SVGElementFactory.cpp Source/WebCore/generated/HTMLElementFactory.h Source/WebCore/generated/XMLNames.cpp Source/WebCore/generated/HTMLNames.cpp Source/WebCore/generated/JSHTMLElementWrapperFactory.cpp Source/WebCore/generated/XMLNames.h Source/WebCore/generated/SVGElementFactory.h Source/WebCore/generated/JSSVGElementWrapperFactory.h Source/WebCore/generated/HTMLNames.h Source/WebCore/generated/XMLNSNames.h Source/WebCore/generated/XLinkNames.cpp Source/WebCore/generated/XLinkNames.h Source/WebCore/generated/MathMLNames.cpp Source/WebCore/generated/JSMathMLElementWrapperFactory.h Source/WebCore/generated/MathMLNames.h Source/WebCore/generated/MathMLElementFactory.cpp Source/WebCore/generated/MathMLElementFactory.h Source/WebCore/generated/JSHTMLElementWrapperFactory.h Source/WebCore/generated/JSSVGElementWrapperFactory.cpp Source/WebCore/generated/JSMathMLElementWrapperFactory.cpp Source/WebCore/generated/XMLNSNames.cpp Copyright: 2005, 2006, 2007, 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/plugins/PluginView.cpp Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008 Collabora Ltd. 2010 Girish Ramakrishnan License: BSD-2-clause Files: Source/WebCore/plugins/PluginStream.cpp Source/WebCore/plugins/win/PluginMessageThrottlerWin.cpp Source/WebCore/plugins/win/PluginMessageThrottlerWin.h Source/WebCore/plugins/PluginStream.h Copyright: 2006, 2007, 2008 Apple Inc. 2008 Collabora, Ltd. License: BSD-2-clause Files: Source/WebCore/plugins/PluginPackage.h Source/WebCore/plugins/PluginDatabase.cpp Copyright: 2006, 2007 Apple Inc. 2008 Collabora, Ltd. License: BSD-2-clause Files: Source/WebCore/plugins/PluginView.h Copyright: 2006, 2007, 2008, 2009, 2010 Apple Inc. 2008 Collabora Ltd. 2009 Girish Ramakrishnan License: BSD-2-clause Files: Source/WebCore/plugins/PluginDatabase.h Copyright: 2006, 2007 Apple Inc. 2008 Collabora, Ltd. 2009 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/plugins/PluginPackage.cpp Copyright: 2006, 2008 Apple Inc. 2008 Collabora Ltd. 2009 Holger Hans Peter Freyther License: BSD-2-clause Files: Source/WebCore/plugins/PluginPackageNone.cpp Source/WebCore/plugins/PluginDataNone.cpp Source/WebCore/plugins/PluginViewNone.cpp Copyright: 2008 Kevin Ollivier License: BSD-2-clause Files: Source/WebCore/plugins/win/PluginPackageWin.cpp Copyright: 2006, 2008 Apple Inc. 2008 Collabora, Ltd. 2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/plugins/win/PluginViewWin.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2008 Collabora Ltd. 2008-2009 Torch Mobile, Inc. 2000 by Feng Yuan (www.fengyuan.com). License: BSD-2-clause Files: Source/WebCore/plugins/win/PluginDatabaseWin.cpp Copyright: 2006, 2007 Apple Inc. 2008 Collabora, Ltd. 2008-2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/WebCore/plugins/mac/PluginPackageMac.cpp Copyright: 2006, 2007 Apple Inc. 2008 Collabora Ltd. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/plugins/mac/PluginViewMac.mm Copyright: 2006, 2007 Apple Inc. 2008 Collabora Ltd. 2008 Nokia Corporation and/or its subsidiary(-ies) 2009 Girish Ramakrishnan License: BSD-2-clause Files: Source/WebCore/plugins/PluginDebug.cpp Copyright: 2006, 2007 Apple Inc. 2009 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/plugins/qt/PluginPackageQt.cpp Copyright: 2006, 2007 Apple Inc. 2008 Collabora Ltd. License: BSD-2-clause Files: Source/WebCore/plugins/qt/PluginViewQt.cpp Copyright: 2006, 2007 Apple Inc. 2008 Collabora Ltd. 2009 Girish Ramakrishnan License: BSD-2-clause Files: Source/WebCore/editing/EditingStyle.cpp Copyright: 2007, 2008, 2009 Apple Computer, Inc. 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/editing/visible_units.h Source/WebCore/editing/TextGranularity.h Source/WebCore/editing/TextAffinity.h Source/WebCore/editing/markup.h Source/WebCore/editing/VisibleSelection.h Source/WebCore/editing/EditAction.h Source/WebCore/bridge/runtime_root.h Source/WebCore/bridge/runtime_root.cpp Source/WebCore/bridge/testbindings.mm Source/WebCore/bridge/jni/jni_objc.mm Source/WebCore/bridge/c/c_utility.h Source/WebCore/bridge/c/c_runtime.cpp Source/WebCore/bridge/npruntime_impl.h Copyright: 2004 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/editing/SplitTextNodeCommand.h Source/WebCore/editing/JoinTextNodesCommand.h Source/WebCore/editing/ReplaceSelectionCommand.h Source/WebCore/editing/CompositeEditCommand.h Source/WebCore/editing/InsertNodeBeforeCommand.h Source/WebCore/editing/AppendNodeCommand.h Source/WebCore/editing/RemoveCSSPropertyCommand.h Source/WebCore/editing/DeleteSelectionCommand.h Source/WebCore/editing/RemoveNodePreservingChildrenCommand.h Source/WebCore/editing/SplitTextNodeContainingElementCommand.h Source/WebCore/editing/RemoveNodeCommand.h Source/WebCore/editing/WrapContentsInDummySpanCommand.h Source/WebCore/editing/InsertParagraphSeparatorCommand.h Source/WebCore/editing/EditCommand.h Source/WebCore/editing/SplitElementCommand.h Source/WebCore/editing/DeleteFromTextNodeCommand.h Source/WebCore/editing/BreakBlockquoteCommand.h Source/WebCore/editing/MergeIdenticalElementsCommand.h Source/WebCore/editing/MoveSelectionCommand.h Source/WebCore/editing/SetNodeAttributeCommand.h Source/WebCore/editing/InsertLineBreakCommand.h Source/WebCore/editing/InsertTextCommand.h Source/WebCore/editing/ReplaceSelectionCommand.cpp Source/WebCore/editing/InsertIntoTextNodeCommand.h Source/WebCore/editing/AppendNodeCommand.cpp Copyright: 2005, 2006, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/SpellingCorrectionController.cpp Source/WebCore/editing/Editor.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/editing/SelectionController.h Copyright: 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/MarkupAccumulator.h Source/WebCore/editing/visible_units.cpp Source/WebCore/editing/VisiblePosition.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/SetNodeAttributeCommand.cpp Source/WebCore/editing/MergeIdenticalElementsCommand.cpp Source/WebCore/editing/RemoveNodePreservingChildrenCommand.cpp Source/WebCore/editing/JoinTextNodesCommand.cpp Source/WebCore/editing/RemoveNodeCommand.cpp Source/WebCore/editing/WrapContentsInDummySpanCommand.cpp Source/WebCore/editing/SplitElementCommand.cpp Source/WebCore/editing/InsertNodeBeforeCommand.cpp Source/WebCore/editing/InsertIntoTextNodeCommand.cpp Source/WebCore/editing/DeleteFromTextNodeCommand.cpp Source/WebCore/editing/SplitTextNodeContainingElementCommand.cpp Source/WebCore/editing/SplitTextNodeCommand.cpp Source/WebCore/editing/RemoveCSSPropertyCommand.cpp Copyright: 2005, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/ApplyBlockElementCommand.cpp Copyright: 2006, 2008 Apple Inc. 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/editing/RemoveFormatCommand.cpp Copyright: 2007 Apple Computer, Inc. 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/editing/EditCommand.cpp Copyright: 2005, 2006, 2007 Apple, Inc. License: BSD-2-clause Files: Source/WebCore/editing/brew/EditorBrew.cpp Copyright: 2006, 2007 Apple Inc. 2010 Company 100, Inc. License: BSD-2-clause Files: Source/WebCore/editing/CompositeEditCommand.cpp Source/WebCore/editing/TypingCommand.h Source/WebCore/editing/TypingCommand.cpp Copyright: 2005, 2006, 2007, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/DeleteButtonController.cpp Source/WebCore/html/HTMLViewSourceDocument.h Source/WebCore/html/TextDocument.h Copyright: 2006, 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/ApplyStyleCommand.cpp Source/WebCore/editing/ApplyStyleCommand.h Copyright: 2005, 2006, 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/MarkupAccumulator.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2009, 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/editing/TextIterator.h Copyright: 2004, 2006, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/htmlediting.cpp Copyright: 2004, 2005, 2006, 2007 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/SelectionController.cpp Copyright: 2004, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/EditorCommand.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2009 Igalia S.L. License: BSD-2-clause Files: Source/WebCore/editing/markup.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2008, 2009 Google Inc. 2011 Igalia S.L. License: BSD-2-clause Files: Source/WebCore/editing/qt/EditorQt.cpp Copyright: 2006 Zack Rusin 2006 Apple Inc. License: BSD-2-clause Files: Source/WebCore/editing/TextIterator.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. 2005 Alexey Proskuryakov. License: BSD-2-clause Files: Source/WebCore/bridge/runtime_array.cpp Source/WebCore/bridge/runtime_array.h Source/WebCore/bridge/jni/jni_jsobject.mm Source/WebCore/bridge/runtime_method.h Source/WebCore/bridge/runtime_method.cpp Copyright: 2003, 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/bridge/npruntime.h Copyright: 2004, Apple Computer, Inc. and The Mozilla Foundation. License: BSD-2-clause Files: Source/WebCore/bridge/jni/JobjectWrapper.cpp Copyright: 2003, 2008, 2010 Apple Inc. 2011, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/bridge/jni/JavaMethodJobject.cpp Source/WebCore/bridge/jni/jsc/JavaArrayJSC.cpp Source/WebCore/bridge/jni/jsc/JavaFieldJSC.cpp Copyright: 2003, 2004, 2005, 2007, 2009 Apple Inc. 2010, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/bridge/jni/JavaMethod.h Source/WebCore/bridge/jni/JavaString.h Source/WebCore/bridge/jni/JavaMethodJobject.h Source/WebCore/bridge/jni/jsc/JavaArrayJSC.h Source/WebCore/bridge/jni/jsc/JavaFieldJSC.h Copyright: 2003, 2004, 2005, 2007, 2009, 2010 Apple Inc. 2010, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/bridge/jni/JavaType.h Source/WebCore/bridge/jni/JNIUtility.h Copyright: 2003, 2004, 2005, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/bridge/jni/JobjectWrapper.h Copyright: 2003 Apple Computer, Inc. 2011, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/bridge/jni/jsc/JNIUtilityPrivate.cpp Copyright: 2003, 2010 Apple, Inc. 2009, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/bridge/jni/jsc/JNIUtilityPrivate.h Copyright: 2003 Apple Computer, Inc. 2009, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/bridge/jni/jsc/JavaClassJSC.cpp Copyright: 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/bridge/jni/jsc/JavaStringJSC.h Copyright: 2010 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/bridge/jni/jsc/JavaClassJSC.h Copyright: 2003, 2004, 2005, 2007, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/bridge/jni/jsc/JavaInstanceJSC.cpp Copyright: 2003, 2008, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/bridge/jni/JNIUtility.cpp Copyright: 2003, 2004, 2005, 2007, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/bridge/Bridge.h Source/WebCore/bridge/jsc/BridgeJSC.h Copyright: 2003, 2008, 2009 Apple Inc. 2010, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/bridge/testqtbindings.cpp Copyright: 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/bridge/jsc/BridgeJSC.cpp Copyright: 2003, 2006, 2008 Apple Inc. 2010, The Android Open Source Project License: BSD-2-clause Files: Source/WebCore/generated/WebKitVersion.h Source/JavaScriptCore/API/JSContextRefPrivate.h Copyright: 2009 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/svg/SVGPointList.idl Source/WebCore/svg/SVGRenderingIntent.idl Source/WebCore/svg/SVGMaskElement.idl Source/WebCore/svg/SVGFECompositeElement.idl Source/WebCore/svg/SVGViewElement.idl Source/WebCore/svg/SVGAnimatedTransformList.idl Source/WebCore/svg/SVGAnimateElement.idl Source/WebCore/svg/SVGAnimatedLength.idl Source/WebCore/svg/SVGFEFuncRElement.idl Source/WebCore/svg/SVGFEDisplacementMapElement.idl Source/WebCore/svg/SVGPatternElement.idl Source/WebCore/svg/SVGFEColorMatrixElement.idl Source/WebCore/svg/SVGFEDistantLightElement.idl Source/WebCore/svg/SVGPolylineElement.idl Source/WebCore/svg/SVGAElement.idl Source/WebCore/svg/SVGAnimationElement.idl Source/WebCore/svg/SVGFEComponentTransferElement.idl Source/WebCore/svg/SVGAnimatedString.idl Source/WebCore/svg/SVGAnimatedInteger.idl Source/WebCore/svg/SVGFEOffsetElement.idl Source/WebCore/svg/SVGAnimatedEnumeration.idl Source/WebCore/svg/SVGImageElement.idl Source/WebCore/svg/SVGPreserveAspectRatio.idl Source/WebCore/svg/SVGDefsElement.idl Source/WebCore/svg/SVGStyleElement.idl Source/WebCore/svg/SVGComponentTransferFunctionElement.idl Source/WebCore/svg/SVGRadialGradientElement.idl Source/WebCore/svg/SVGFEMergeNodeElement.idl Source/WebCore/svg/SVGZoomEvent.idl Source/WebCore/svg/SVGFESpotLightElement.idl Source/WebCore/svg/SVGAnimatedBoolean.idl Source/WebCore/svg/SVGGradientElement.idl Source/WebCore/svg/SVGAnimatedPreserveAspectRatio.idl Source/WebCore/svg/SVGFEFloodElement.idl Source/WebCore/svg/SVGFEFuncBElement.idl Source/WebCore/svg/SVGFEFuncAElement.idl Source/WebCore/svg/SVGTitleElement.idl Source/WebCore/svg/SVGAnimatedRect.idl Source/WebCore/svg/SVGTSpanElement.idl Source/WebCore/svg/SVGTextElement.idl Source/WebCore/svg/SVGAnimateTransformElement.idl Source/WebCore/svg/SVGPolygonElement.idl Source/WebCore/svg/SVGCursorElement.idl Source/WebCore/svg/SVGAnimateColorElement.idl Source/WebCore/svg/SVGUnitTypes.idl Source/WebCore/svg/SVGLinearGradientElement.idl Source/WebCore/svg/SVGStopElement.idl Source/WebCore/svg/SVGFEGaussianBlurElement.idl Source/WebCore/svg/SVGEllipseElement.idl Source/WebCore/svg/SVGSymbolElement.idl Source/WebCore/svg/SVGTRefElement.idl Source/WebCore/svg/SVGFESpecularLightingElement.idl Source/WebCore/svg/SVGAnimatedNumberList.idl Source/WebCore/svg/SVGFEDiffuseLightingElement.idl Source/WebCore/svg/SVGGElement.idl Source/WebCore/svg/SVGSwitchElement.idl Source/WebCore/svg/SVGFEMergeElement.idl Source/WebCore/svg/SVGFETurbulenceElement.idl Source/WebCore/svg/SVGTextContentElement.idl Source/WebCore/svg/SVGStringList.idl Source/WebCore/svg/SVGAnimatedLengthList.idl Source/WebCore/svg/SVGPaint.idl Source/WebCore/svg/SVGForeignObjectElement.idl Source/WebCore/svg/SVGFEImageElement.idl Source/WebCore/svg/SVGFEBlendElement.idl Source/WebCore/svg/SVGScriptElement.idl Source/WebCore/svg/SVGDescElement.idl Source/WebCore/svg/SVGAnimatedAngle.idl Source/WebCore/svg/SVGUseElement.idl Source/WebCore/svg/SVGSetElement.idl Source/WebCore/svg/SVGTextPositioningElement.idl Source/WebCore/svg/SVGLineElement.idl Source/WebCore/svg/SVGFEPointLightElement.idl Source/WebCore/svg/SVGMarkerElement.idl Source/WebCore/svg/SVGFETileElement.idl Source/WebCore/svg/SVGFEFuncGElement.idl Copyright: 2006 Apple Inc. License: BSD-2-clause Files: Source/WebCore/svg/SVGExternalResourcesRequired.idl Source/WebCore/svg/SVGAnimatedNumber.idl Source/WebCore/svg/SVGTests.idl Source/WebCore/svg/SVGLangSpace.idl Source/WebCore/svg/SVGURIReference.idl Source/WebCore/svg/SVGPathSegList.idl Source/WebCore/svg/SVGPathElement.idl Source/WebCore/svg/SVGNumberList.idl Source/WebCore/svg/SVGFitToViewBox.idl Source/WebCore/svg/SVGTransformList.idl Source/WebCore/svg/SVGLengthList.idl Source/WebCore/svg/SVGRectElement.idl Source/WebCore/svg/SVGTransformable.idl Source/WebCore/svg/SVGClipPathElement.idl Source/WebCore/svg/SVGLocatable.idl Source/WebCore/svg/SVGCircleElement.idl Source/WebCore/svg/SVGZoomAndPan.idl Source/WebCore/svg/SVGFilterPrimitiveStandardAttributes.idl Copyright: 2006 Samuel Weinig 2006 Apple Inc. License: BSD-2-clause Files: Source/WebCore/svg/SVGStylable.idl Copyright: 2006 Samuel Weinig 2007 Rob Buis 2006 Apple Inc. License: BSD-2-clause Files: Source/WebCore/svg/SVGFontFaceElement.idl Source/WebCore/svg/SVGMissingGlyphElement.idl Source/WebCore/svg/SVGGlyphElement.idl Source/WebCore/svg/SVGFontFaceFormatElement.idl Source/WebCore/svg/SVGFontFaceSrcElement.idl Source/WebCore/svg/SVGFontFaceNameElement.idl Source/WebCore/svg/SVGFontFaceUriElement.idl Source/WebCore/svg/SVGViewSpec.idl Source/WebCore/svg/SVGFontElement.idl Copyright: 2007 Eric Seidel License: BSD-2-clause Files: Source/WebCore/svg/SVGPathSegCurvetoQuadraticSmoothRel.idl Source/WebCore/svg/SVGPathSegArcAbs.idl Source/WebCore/svg/SVGPathSegCurvetoQuadraticRel.idl Source/WebCore/svg/SVGPathSegClosePath.idl Source/WebCore/svg/SVGPathSegMovetoRel.idl Source/WebCore/svg/SVGPathSegLinetoHorizontalAbs.idl Source/WebCore/svg/SVGPathSegLinetoVerticalAbs.idl Source/WebCore/svg/SVGPathSegLinetoRel.idl Source/WebCore/svg/SVGPathSegMovetoAbs.idl Source/WebCore/svg/SVGPathSegCurvetoCubicAbs.idl Source/WebCore/svg/SVGPathSegLinetoHorizontalRel.idl Source/WebCore/svg/SVGPathSegCurvetoCubicRel.idl Source/WebCore/svg/SVGPathSegArcRel.idl Source/WebCore/svg/SVGPathSegLinetoAbs.idl Source/WebCore/svg/SVGPathSegCurvetoCubicSmoothAbs.idl Source/WebCore/svg/SVGPathSegLinetoVerticalRel.idl Source/WebCore/svg/SVGFilterElement.idl Source/WebCore/svg/SVGPathSegCurvetoQuadraticAbs.idl Source/WebCore/svg/SVGPathSegCurvetoQuadraticSmoothAbs.idl Source/WebCore/svg/SVGPathSegCurvetoCubicSmoothRel.idl Copyright: 2006 Apple Inc. 2006 Samuel Weinig License: BSD-2-clause Files: Source/WebCore/svg/SVGPathSeg.idl Copyright: 2006 Samuel Weinig 2006, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/svg/SVGElementInstanceList.idl Source/WebCore/svg/SVGTextPathElement.idl Copyright: 2007 Nikolas Zimmermann License: BSD-2-clause Files: Source/WebCore/svg/ElementTimeControl.h Source/WebCore/svg/ElementTimeControl.idl Copyright: 2008 Apple Inc. 2009 Cameron McCormack License: BSD-2-clause Files: Source/WebCore/svg/graphics/SVGImage.cpp Copyright: 2006 Eric Seidel 2008, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/svg/graphics/SVGImage.h Copyright: 2006 Eric Seidel 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/svg/SVGElementInstance.idl Copyright: 2007, 2008 Nikolas Zimmermann 2008 Apple Inc. License: BSD-2-clause Files: Source/WebCore/html/parser/HTMLElementStack.h Source/WebCore/html/parser/HTMLElementStack.cpp Source/WebCore/html/parser/HTMLTreeBuilder.cpp Source/WebCore/html/parser/HTMLTreeBuilder.h Source/WebCore/html/parser/HTMLConstructionSite.h Source/WebCore/html/parser/HTMLConstructionSite.cpp Copyright: 2010 Google, Inc. 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/html/parser/XSSFilter.h Source/WebCore/html/parser/XSSFilter.cpp Copyright: 2011 Adam Barth. License: BSD-2-clause Files: Source/WebCore/html/parser/HTMLEntityParser.cpp Source/WebCore/html/parser/HTMLTokenizer.cpp Copyright: 2008 Apple Inc. 2009 Torch Mobile, Inc. http://www.torchmobile.com/ 2010 Google, Inc. License: BSD-2-clause Files: Source/WebCore/html/parser/HTMLEntityParser.h Source/WebCore/html/parser/HTMLTokenizer.h Copyright: 2008 Apple Inc. 2010 Google, Inc. License: BSD-2-clause Files: Source/WebCore/html/parser/HTMLPreloadScanner.h Source/WebCore/html/parser/CSSPreloadScanner.h Copyright: 2008 Apple Inc. 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/parser/CSSPreloadScanner.cpp Copyright: 2008, 2010 Apple Inc. 2009 Torch Mobile, Inc. http://www.torchmobile.com/ 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/parser/HTMLPreloadScanner.cpp Copyright: 2008 Apple Inc. 2009 Torch Mobile, Inc. http://www.torchmobile.com/ 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/MediaDocument.h Copyright: 2008,2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/html/canvas/CanvasStyle.h Copyright: 2006, 2008 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebCore/html/canvas/Int16Array.idl Copyright: 2006, 2010 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/html/canvas/Uint16Array.idl Source/WebCore/html/canvas/Int32Array.idl Source/WebCore/html/canvas/Uint32Array.idl Source/WebCore/html/canvas/Int8Array.idl Source/WebCore/html/canvas/Uint8Array.idl Source/WebKit2/Configurations/FeatureDefines.xcconfig Copyright: 2009, 2010 Apple Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/canvas/TypedArrayBase.h Source/WebCore/html/canvas/IntegralTypedArrayBase.h Copyright: 2010 Apple Inc. 2010, Google Inc. License: BSD-2-clause Files: Source/WebCore/html/canvas/CanvasStyle.cpp Copyright: 2006, 2008 Apple Inc. 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) 2007 Alp Toker 2008 Eric Seidel License: BSD-2-clause Files: Source/WebCore/html/canvas/CanvasGradient.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2007 Alp Toker License: BSD-2-clause Files: Source/WebCore/html/canvas/Float32Array.idl Copyright: 2006, 2010 Apple Computer, Inc. 2009 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/canvas/CanvasRenderingContext2D.cpp Copyright: 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) 2007 Alp Toker 2008 Eric Seidel 2008 Dirk Schulze 2010 Torch Mobile (Beijing) Co. Ltd. License: BSD-2-clause Files: Source/WebCore/html/HTMLAudioElement.h Copyright: 2007, 2010 Apple Inc. 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/shadow/MediaControlRootElement.cpp Source/WebCore/html/shadow/MediaControlRootElement.h Copyright: 2007, 2008, 2009, 2010, 2011 Apple Inc. 2011 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/shadow/MediaControlRootElementChromium.h Source/WebCore/html/shadow/MediaControlRootElementChromium.cpp Copyright: 2007, 2008, 2009, 2010 Apple Inc. 2011 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/shadow/TextControlInnerElements.h Source/WebCore/html/shadow/TextControlInnerElements.cpp Copyright: 2006, 2008, 2010 Apple Inc. 2010 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/shadow/MediaControls.h Source/WebCore/html/shadow/MediaControls.cpp Copyright: 2011 Apple Inc. 2011 Google Inc. License: BSD-2-clause Files: Source/WebCore/html/HTMLViewSourceDocument.cpp Copyright: 2006, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/html/HTMLCanvasElement.idl Copyright: 2006, 2008, 2009 Apple Inc. 2010 Torch Mobile (Beijing) Co. Ltd. License: BSD-2-clause Files: Source/WebCore/html/ImageDocument.cpp Copyright: 2006, 2007, 2008, 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/html/PluginDocument.h Copyright: 2006, 2008, 2009Apple Inc. License: BSD-2-clause Files: Source/WebCore/html/HTMLCanvasElement.h Copyright: 2004, 2006, 2009, 2010 Apple Inc. 2007 Alp Toker 2010 Torch Mobile (Beijing) Co. Ltd. License: BSD-2-clause Files: Source/WebCore/html/HTMLAudioElement.cpp Copyright: 2007, 2010 Apple Inc. 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/html/HTMLCanvasElement.cpp Copyright: 2004, 2006, 2007 Apple Inc. 2007 Alp Toker 2010 Torch Mobile (Beijing) Co. Ltd. License: BSD-2-clause Files: Source/WebCore/webaudio/AudioContext.idl Copyright: 2010, Google Inc. 2011 Apple Inc. License: BSD-2-clause Files: Source/WebCore/webaudio/OfflineAudioDestinationNode.cpp Source/WebCore/webaudio/OfflineAudioCompletionEvent.h Source/WebCore/webaudio/OfflineAudioCompletionEvent.cpp Source/WebCore/webaudio/OfflineAudioDestinationNode.h Source/WebCore/webaudio/DefaultAudioDestinationNode.h Source/WebCore/webaudio/DefaultAudioDestinationNode.cpp Source/WebCore/webaudio/OfflineAudioCompletionEvent.idl Copyright: 2011, Google Inc. License: BSD-2-clause Files: Source/WebCore/inspector/InspectorClient.h Copyright: 2007 Apple Inc. 2011 Google Inc. License: BSD-2-clause Files: Source/WebCore/inspector/front-end/TopDownProfileDataGridTree.js Source/WebCore/inspector/front-end/ProfileDataGridTree.js Source/WebCore/inspector/front-end/BottomUpProfileDataGridTree.js Copyright: 2009 280 North Inc. License: BSD-2-clause Files: Source/WebCore/inspector/front-end/ObjectPropertiesSection.js Copyright: 2008 Apple Inc. 2009 Joseph Pecoraro License: BSD-2-clause Files: Source/WebCore/inspector/front-end/DOMStorageItemsView.js Copyright: 2008 Nokia Inc. License: BSD-2-clause Files: Source/WebCore/xml/XPathVariableReference.h Copyright: 2005 Frerich Raabe License: BSD-2-clause Files: Source/WebCore/xml/XPathNodeSet.cpp Source/WebCore/xml/XPathNodeSet.h Source/WebCore/xml/XSLTExtensions.h Copyright: 2007 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/xml/XPathPredicate.h Source/WebCore/xml/XPathValue.cpp Source/WebCore/xml/XPathEvaluator.cpp Source/WebCore/xml/XPathUtil.h Source/WebCore/xml/XPathEvaluator.h Source/WebCore/xml/XPathNSResolver.cpp Source/WebCore/xml/XPathVariableReference.cpp Source/WebCore/xml/XPathExpressionNode.cpp Source/WebCore/xml/XPathValue.h Source/WebCore/xml/XPathExpression.h Source/WebCore/xml/XPathNSResolver.h Copyright: 2005 Frerich Raabe 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/xml/XPathPredicate.cpp Copyright: 2005 Frerich Raabe 2006 Apple Computer, Inc. 2007 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/xml/XMLHttpRequestProgressEventThrottle.h Source/WebCore/xml/XMLHttpRequestProgressEventThrottle.cpp Copyright: 2010 Julien Chaffraix License: BSD-2-clause Files: Source/WebCore/xml/XPathFunctions.cpp Source/WebCore/xml/XPathStep.cpp Source/WebCore/xml/XPathPath.cpp Copyright: 2005 Frerich Raabe 2006, 2009 Apple Inc. 2007 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/xml/XPathParser.h Copyright: 2005 Maksim Orlovich 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebCore/xml/XPathFunctions.h Source/WebCore/xml/XPathExpression.cpp Source/WebCore/xml/XPathPath.h Source/WebCore/xml/XPathExpressionNode.h Source/WebCore/xml/XPathResult.cpp Source/WebCore/xml/XPathUtil.cpp Source/WebCore/xml/XPathStep.h Source/WebCore/xml/XPathResult.h Copyright: 2005 Frerich Raabe 2006, 2009 Apple Inc. License: BSD-2-clause Files: Source/WebCore/xml/XMLHttpRequestProgressEvent.h Copyright: 2008, 2010 Apple Inc. 2008 Julien Chaffraix . License: BSD-2-clause Files: Source/WebCore/xml/XPathGrammar.y Copyright: 2005 Frerich Raabe 2006 Apple Inc. 2007 Alexey Proskuryakov License: BSD-2-clause Files: Source/WebCore/xml/XPathParser.cpp Copyright: 2005 Maksim Orlovich 2006 Apple Computer, Inc. 2007 Alexey Proskuryakov License: BSD-2-clause Files: Source/JavaScriptCore/API/JSCallbackObject.cpp Copyright: 2006 Apple Computer, Inc. 2007 Eric Seidel License: BSD-2-clause Files: Source/JavaScriptCore/API/JavaScript.h Copyright: 2006 Apple Inc. 2008 Alp Toker License: BSD-2-clause Files: Source/JavaScriptCore/API/JSObjectRef.h Copyright: 2006, 2007 Apple Inc. 2008 Kelvin W Sherlock License: BSD-2-clause Files: Source/JavaScriptCore/API/JSCallbackObjectFunctions.h Copyright: 2006, 2008 Apple Inc. 2007 Eric Seidel License: BSD-2-clause Files: Source/JavaScriptCore/API/JSCallbackObject.h Copyright: 2006, 2007, 2008, 2010 Apple Inc. 2007 Eric Seidel License: BSD-2-clause Files: Source/JavaScriptCore/API/JSObjectRef.cpp Copyright: 2006, 2007, 2008 Apple Inc. 2008 Kelvin W Sherlock License: BSD-2-clause Files: Source/JavaScriptCore/jit/JITOpcodes32_64.cpp Source/JavaScriptCore/jit/JITOpcodes.cpp Copyright: 2009 Apple Inc. 2010 Patrick Gansterer License: BSD-2-clause Files: Source/JavaScriptCore/runtime/WeakRandom.h Copyright: 2009 Apple Inc. 2009 Ian C. Bullard License: BSD-2-clause Files: Source/JavaScriptCore/runtime/RegExpCache.h Source/JavaScriptCore/runtime/RegExpCache.cpp Source/JavaScriptCore/runtime/RegExpKey.h Copyright: 2010 University of Szeged 2010 Renata Hodovan License: BSD-2-clause Files: Source/JavaScriptCore/assembler/MacroAssemblerARMv7.h Source/JavaScriptCore/assembler/ARMv7Assembler.h Copyright: 2009, 2010 Apple Inc. 2010 University of Szeged License: BSD-2-clause Files: Source/JavaScriptCore/assembler/MacroAssemblerSH4.cpp Copyright: 2011 STMicroelectronics. 2008 Apple Inc. License: BSD-2-clause Files: Source/JavaScriptCore/assembler/MacroAssemblerARM.h Copyright: 2008 Apple Inc. 2009, 2010 University of Szeged License: BSD-2-clause Files: Source/JavaScriptCore/assembler/AssemblerBufferWithConstantPool.h Source/JavaScriptCore/assembler/ARMAssembler.cpp Source/JavaScriptCore/assembler/MacroAssemblerARM.cpp Copyright: 2009 University of Szeged License: BSD-2-clause Files: Source/JavaScriptCore/assembler/SH4Assembler.h Source/JavaScriptCore/assembler/MacroAssemblerSH4.h Copyright: 2009-2011 STMicroelectronics. 2008 Apple Inc. License: BSD-2-clause Files: Source/JavaScriptCore/assembler/ARMAssembler.h Copyright: 2009, 2010 University of Szeged License: BSD-2-clause Files: Source/JavaScriptCore/assembler/MacroAssemblerMIPS.h Copyright: 2008 Apple Inc. 2010 MIPS Technologies, Inc. License: BSD-2-clause Files: Source/JavaScriptCore/assembler/MIPSAssembler.h Copyright: 2009 Apple Inc. 2009 University of Szeged 2010 MIPS Technologies, Inc. License: BSD-2-clause Files: Source/JavaScriptCore/wtf/ParallelJobsGeneric.cpp Source/JavaScriptCore/wtf/ParallelJobsLibdispatch.h Source/JavaScriptCore/wtf/ParallelJobsOpenMP.h Source/JavaScriptCore/wtf/ParallelJobsGeneric.h Source/JavaScriptCore/wtf/ParallelJobs.h Copyright: 2011 University of Szeged 2011 Gabor Loki License: BSD-2-clause Files: Source/JavaScriptCore/wtf/StringExtras.cpp Copyright: 2009 Company 100, Inc. License: BSD-2-clause Files: Source/JavaScriptCore/wtf/RandomNumberSeed.h Source/JavaScriptCore/wtf/RandomNumber.h Source/JavaScriptCore/wtf/CryptographicallyRandomNumber.h Copyright: 2008 Torch Mobile Inc. (http://www.torchmobile.com/) License: BSD-2-clause Files: Source/JavaScriptCore/wtf/Assertions.h Copyright: 2003, 2006, 2007 Apple Inc. License: BSD-2-clause Files: Source/JavaScriptCore/wtf/OSRandomSource.h Copyright: Google Inc. License: BSD-2-clause Files: Source/JavaScriptCore/wtf/unicode/UTF8.cpp Copyright: 2007 Apple Inc. 2010 Patrick Gansterer License: BSD-2-clause Files: Source/JavaScriptCore/wtf/OSAllocatorSymbian.cpp Copyright: 2010 Apple Inc. 2011 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/JavaScriptCore/wtf/Platform.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2007-2009 Torch Mobile, Inc. 2010. License: BSD-2-clause Files: Source/JavaScriptCore/wtf/text/CString.cpp Source/JavaScriptCore/wtf/text/CString.h Copyright: 2003, 2006, 2008, 2009, 2010 Apple Inc. License: BSD-2-clause Files: Source/JavaScriptCore/wtf/OwnPtrCommon.h Copyright: 2009 Apple Inc. 2009 Torch Mobile, Inc. 2010 Company 100 Inc. License: BSD-2-clause Files: Source/JavaScriptCore/wtf/Assertions.cpp Copyright: 2003, 2006, 2007 Apple Inc. 2007-2009 Torch Mobile, Inc. License: BSD-2-clause Files: Source/JavaScriptCore/yarr/Yarr.h Source/JavaScriptCore/yarr/YarrPattern.cpp Source/JavaScriptCore/yarr/YarrPattern.h Source/JavaScriptCore/yarr/YarrInterpreter.cpp Copyright: 2009 Apple Inc. 2010 Peter Varga , University of Szeged License: BSD-2-clause Files: Source/JavaScriptCore/wscript wscript Copyright: 2009 Kevin Ollivier License: BSD-2-clause Files: Source/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.h Source/WebKit/wince/WebCoreSupport/FrameLoaderClientWinCE.cpp Copyright: 2010 Patrick Gansterer 2011 Apple Inc. License: BSD-2-clause Files: Source/WebKit/wince/WebCoreSupport/PlatformStrategiesWinCE.cpp Copyright: 2010 Apple Inc. 2010 Patrick Gansterer License: BSD-2-clause Files: Source/WebKit/wince/WebView.cpp Copyright: 2006, 2007, 2008, 2009, 2010 Apple, Inc. 2010 Patrick Gansterer License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/EditorClientQt.h Copyright: 2006 Nikolas Zimmermann 2006 Zack Rusin 2006 Apple Computer, Inc. License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/ChromeClientQt.h Copyright: 2006 Zack Rusin 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/WebPlatformStrategies.cpp Copyright: 2007 Staikos Computing Services Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) 2008 Collabora Ltd. 2010 Apple Inc. 2010 INdT - Instituto Nokia de Tecnologia License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/ChromeClientQt.cpp Copyright: 2006 Zack Rusin 2006 Apple Computer, Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/FullScreenVideoWidget.h Source/WebKit/qt/WebCoreSupport/FullScreenVideoWidget.cpp Copyright: 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp Copyright: 2006 Zack Rusin 2006, 2011 Apple Inc. 2009 Nokia Corporation and/or its subsidiary(-ies) 2008 Collabora Ltd. License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/IconDatabaseClientQt.h Source/WebKit/qt/WebCoreSupport/IconDatabaseClientQt.cpp Copyright: 2011 Andreas Kling License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/WebPlatformStrategies.h Copyright: 2010 Apple Inc. 2010 INdT - Instituto Nokia de Tecnologia 2008 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/EditorClientQt.cpp Copyright: 2006 Nikolas Zimmermann 2006 Zack Rusin 2006, 2008 Apple Inc. 2009 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/FrameLoaderClientQt.h Copyright: 2006 Zack Rusin 2006, 2011 Apple Inc. 2008 Nokia Corporation and/or its subsidiary(-ies) 2008 Collabora Ltd. License: BSD-2-clause Files: Source/WebKit2/Shared/API/c/gtk/WKGraphicsContextGtk.h Source/WebKit2/Shared/API/c/gtk/WKGraphicsContextGtk.cpp Copyright: 2011 Igalia SL License: BSD-2-clause Files: Source/WebKit2/Shared/API/c/gtk/WKBaseGtk.h Source/WebKit2/Shared/gtk/WebEventFactory.cpp Source/WebKit2/Platform/gtk/ModuleGtk.cpp Source/WebKit2/UIProcess/API/C/gtk/WKView.h Source/WebKit2/UIProcess/API/C/gtk/WKView.cpp Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBasePrivate.h Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.cpp Source/WebKit2/UIProcess/API/gtk/WebKitWebViewBase.h Source/WebKit2/UIProcess/API/gtk/PageClientImpl.h Source/WebKit2/UIProcess/API/gtk/PageClientImpl.cpp Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebErrorsGtk.cpp Source/WebKit2/WebProcess/WebPage/gtk/ChunkedUpdateDrawingAreaGtk.cpp Source/WebKit2/WebProcess/WebPage/gtk/WebPageGtk.cpp Copyright: 2010 Apple Inc. 2010 Motorola Mobility, Inc. 2011 Igalia S.L. License: BSD-2-clause Files: Source/WebKit2/Shared/API/c/WKBase.h Source/WebKit2/UIProcess/API/C/WKAPICast.h Copyright: 2010, 2011 Apple Inc. 2010 Motorola Mobility, Inc. License: BSD-2-clause Files: Source/WebKit2/Shared/gtk/WebCoreArgumentCodersGtk.cpp Source/WebKit2/Shared/gtk/WebEventFactory.h Source/WebKit2/Shared/gtk/ShareableBitmapGtk.cpp Source/WebKit2/Shared/gtk/PlatformCertificateInfo.h Source/WebKit2/WebKit2Prefix.h Source/WebKit2/gtk/MainGtk.cpp Source/WebKit2/Platform/gtk/RunLoopGtk.cpp Source/WebKit2/Platform/gtk/SharedMemoryGtk.cpp Source/WebKit2/Platform/WorkQueue.h Source/WebKit2/UIProcess/API/C/gtk/WKAPICastGtk.h Source/WebKit2/UIProcess/DrawingAreaProxy.h Source/WebKit2/UIProcess/gtk/WebPageProxyGtk.cpp Source/WebKit2/UIProcess/gtk/TextCheckerGtk.cpp Source/WebKit2/UIProcess/gtk/WebInspectorGtk.cpp Source/WebKit2/UIProcess/gtk/WebContextGtk.cpp Source/WebKit2/UIProcess/gtk/WebPreferencesGtk.cpp Source/WebKit2/UIProcess/Plugins/gtk/PluginInfoStoreGtk.cpp Source/WebKit2/UIProcess/ChunkedUpdateDrawingAreaProxy.cpp Source/WebKit2/UIProcess/Launcher/gtk/ThreadLauncherGtk.cpp Source/WebKit2/UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp Source/WebKit2/WebProcess/gtk/WebProcessMainGtk.cpp Source/WebKit2/WebProcess/gtk/WebProcessMainGtk.h Source/WebKit2/WebProcess/InjectedBundle/gtk/InjectedBundleGtk.cpp Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebFrameNetworkingContext.h Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebPopupMenuGtk.cpp Source/WebKit2/WebProcess/WebCoreSupport/gtk/WebContextMenuClientGtk.cpp Source/WebKit2/WebProcess/WebPage/gtk/WebInspectorGtk.cpp Source/WebKit2/config.h Copyright: 2010 Apple Inc. 2010 Motorola Mobility, Inc. License: BSD-2-clause Files: Source/WebKit2/Shared/gtk/UpdateChunk.h Source/WebKit2/Shared/gtk/NativeWebKeyboardEventGtk.cpp Source/WebKit2/Shared/gtk/UpdateChunk.cpp Source/WebKit2/Shared/NativeWebKeyboardEvent.h Source/WebKit2/UIProcess/gtk/ChunkedUpdateDrawingAreaProxyGtk.cpp Source/WebKit2/UIProcess/ChunkedUpdateDrawingAreaProxy.h Copyright: 2010 Apple Inc. 2010 Motorola Mobility, Inc. 2011 Igalia S.L License: BSD-2-clause Files: Source/WebKit2/Shared/gtk/NativeWebMouseEventGtk.cpp Copyright: 2011 Igalia S.L. License: BSD-2-clause Files: Source/WebKit2/Shared/Plugins/Netscape/NetscapePluginModuleNone.cpp Source/WebKit2/WebProcess/Plugins/Netscape/NetscapePluginNone.cpp Copyright: 2011 Apple Inc. 2011 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebKit2/Shared/win/WebEventFactory.cpp Copyright: 2010 Apple Inc. 2006-2009 Google Inc. License: BSD-2-clause Files: Source/WebKit2/Shared/qt/WebEventFactoryQt.cpp Source/WebKit2/Shared/qt/UpdateChunk.h Source/WebKit2/Shared/qt/WebEventFactoryQt.h Source/WebKit2/Platform/CoreIPC/unix/ConnectionUnix.cpp Source/WebKit2/Platform/CoreIPC/unix/AttachmentUnix.cpp Source/WebKit2/Platform/qt/WorkQueueQt.cpp Source/WebKit2/Platform/qt/RunLoopQt.cpp Source/WebKit2/UIProcess/Launcher/qt/ThreadLauncherQt.cpp Source/WebKit2/UIProcess/Launcher/qt/ProcessLauncherQt.cpp Source/WebKit2/UIProcess/qt/WebContextMenuProxyQt.h Source/WebKit2/UIProcess/qt/WebContextMenuProxyQt.cpp Source/WebKit2/UIProcess/qt/ChunkedUpdateDrawingAreaProxyQt.cpp Source/WebKit2/WebProcess/WebCoreSupport/qt/WebErrorsQt.cpp Source/WebKit2/WebProcess/WebPage/qt/WebPageQt.cpp Source/WebKit2/WebProcess/WebPage/qt/ChunkedUpdateDrawingAreaQt.cpp Source/WebKit2/WebProcess/qt/WebProcessMainQt.cpp Copyright: 2010 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebKit2/Shared/qt/UpdateChunk.cpp Copyright: 2010 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) 2010 University of Szeged License: BSD-2-clause Files: Source/WebKit2/PluginProcess/qt/PluginProcessMainQt.cpp Copyright: 2010, 2011 Nokia Inc. License: BSD-2-clause Files: Source/WebKit2/PluginProcess/qt/PluginControllerProxyQt.cpp Source/WebKit2/UIProcess/Plugins/qt/PluginProcessProxyQt.cpp Source/WebKit2/WebProcess/Plugins/Netscape/qt/PluginProxyQt.cpp Copyright: 2011 Nokia Inc. License: BSD-2-clause Files: Source/WebKit2/Platform/gtk/WorkQueueGtk.cpp Copyright: 2011 Igalia S.L. 2010 Apple Inc. 2010 Motorola Mobility, Inc. License: BSD-2-clause Files: Source/WebKit2/Platform/RunLoop.h Source/WebKit2/Platform/CoreIPC/Connection.h Copyright: 2010 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies) 2010 Motorola Mobility, Inc. License: BSD-2-clause Files: Source/WebKit2/Platform/unix/SharedMemoryUnix.cpp Copyright: 2010 Apple Inc. 2010 University of Szeged 2010 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause Files: Source/WebKit2/Platform/qt/ModuleQt.cpp Source/WebKit2/WebProcess/InjectedBundle/qt/InjectedBundleQt.cpp Copyright: 2010 Apple Inc. 2010 University of Szeged. License: BSD-2-clause Files: Source/WebKit2/UIProcess/API/qt/qwkhistory.h Source/WebKit2/UIProcess/API/qt/qwkhistory_p.h Source/WebKit2/UIProcess/API/qt/qwkhistory.cpp Copyright: 2010 Juha Savolainen License: BSD-2-clause Files: Source/WebKit2/UIProcess/mac/WebCookieManagerProxyMac.mm Copyright: 2011, 2011 Apple Inc. License: BSD-2-clause Files: Source/WebKit2/UIProcess/qt/WebContextQt.cpp Source/WebKit2/WebProcess/Plugins/Netscape/x11/NetscapePluginX11.cpp Source/WebKit2/qt/MainQt.cpp Copyright: 2010 Apple Inc. 2010 University of Szeged License: BSD-2-clause Files: Source/WebKit2/UIProcess/qt/BackingStoreQt.cpp Copyright: 2011 Apple Inc. 2011 Nokia Corporation and/or its subsidiary(-ies) 2011 Andreas Kling License: BSD-2-clause Files: Source/WebKit2/WebProcess/Cookies/curl/WebCookieManagerCurl.cpp Copyright: 2011 Apple Inc. 2011 Brent Fulgham . License: BSD-2-clause Files: Source/WebKit2/WebProcess/gtk/WebProcessGtk.cpp Copyright: 2010 Apple Inc. 2011 Motorola Mobility, Inc. License: BSD-2-clause Files: Source/WebKit2/WebProcess/Downloads/soup/DownloadSoup.cpp Source/WebKit2/WebProcess/Downloads/curl/DownloadCurl.cpp Copyright: 2010, 2011 Apple Inc. 2010 Brent Fulgham License: BSD-2-clause Files: Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.h Copyright: 2010 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebKit2/WebProcess/WebCoreSupport/WebChromeClient.cpp Copyright: 2010, 2011 Apple Inc. 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-2-clause Files: Source/WebKit2/Scripts/generate-forwarding-headers.pl Copyright: 2010 Andras Becsi , University of Szeged License: BSD-2-clause Files: Source/WebKit2/Scripts/webkit2/messages.py Copyright: 2010 Apple Inc. 2010 Apple Inc. License: BSD-2-clause Files: Source/WebKit2/Scripts/webkit2/messages_unittest.py Copyright: 2010 Apple Inc. 2010 Apple Inc. 2010 Apple Inc. 2010 Apple Inc. License: BSD-2-clause Files: Source/WebCore/platform/text/mac/ShapeArabic.c Copyright: 2000-2004, International Business Machines 2007 Apple Inc. License: X11 Files: Source/WebCore/bridge/npapi.h Copyright: 1998 Netscape Communications Corporation License: LGPL-2+ Files: Source/WebCore/bridge/nptypes.h Copyright: 2004 mozilla.org License: LGPL-2+ Files: Source/WebCore/html/canvas/CheckedInt.h Copyright: 2009 Mozilla Corporation License: LGPL-2+ Files: Source/JavaScriptCore/runtime/DateConversion.h Copyright: 1999-2000 Harri Porten 2006, 2007 Apple Inc. 2009 Google Inc. 1998 Netscape Communications Corporation License: LGPL-2+ Files: Source/JavaScriptCore/wtf/DateMath.h Copyright: 1999-2000 Harri Porten 2006, 2007 Apple Inc. 2009 Google Inc. 2010 Research In Motion Limited. 1998 Netscape Communications Corporation License: LGPL-2+ Files: Source/WebCore/generated/XPathGrammar.h Source/WebCore/generated/CSSGrammar.h Source/WebCore/generated/XPathGrammar.cpp Source/ThirdParty/ANGLE/src/compiler/glslang_tab.h Copyright: 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. License: GPL-2+ Files: Source/ThirdParty/ANGLE/src/compiler/glslang_tab.cpp Copyright: 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. 2002-2010 The ANGLE Project Authors. License: GPL-2+ Files: Source/WebCore/xml/XSLTExtensions.cpp Copyright: 2001-2002 Thomas Broyer, Charlie Bozeman and Daniel Veillard. 2007 Alexey Proskuryakov License: Expat Files: Source/ThirdParty/ANGLE/include/EGL/eglext.h Source/ThirdParty/ANGLE/include/EGL/egl.h Source/ThirdParty/ANGLE/include/EGL/eglplatform.h Copyright: 2007-2009 The Khronos Group Inc. License: Expat Files: Source/ThirdParty/ANGLE/include/KHR/khrplatform.h Copyright: 2008-2009 The Khronos Group Inc. License: Expat Files: Source/ThirdParty/gtest/scripts/upload.py Copyright: 2007 Google Inc. License: Apache Files: Source/ThirdParty/glu/libtess/Imakefile Source/ThirdParty/glu/libtess/priorityq-heap.h Source/ThirdParty/glu/libtess/memalloc.c Source/ThirdParty/glu/libtess/geom.c Source/ThirdParty/glu/libtess/tessmono.c Source/ThirdParty/glu/libtess/dict.c Source/ThirdParty/glu/libtess/sweep.h Source/ThirdParty/glu/libtess/dict.h Source/ThirdParty/glu/libtess/priorityq.c Source/ThirdParty/glu/libtess/priorityq.h Source/ThirdParty/glu/libtess/sweep.c Source/ThirdParty/glu/libtess/priorityq-heap.c Source/ThirdParty/glu/libtess/dict-list.h Source/ThirdParty/glu/libtess/tessmono.h Source/ThirdParty/glu/libtess/normal.c Source/ThirdParty/glu/libtess/render.c Source/ThirdParty/glu/libtess/tess.h Source/ThirdParty/glu/libtess/priorityq-sort.h Source/ThirdParty/glu/libtess/normal.h Source/ThirdParty/glu/libtess/GNUmakefile Source/ThirdParty/glu/libtess/geom.h Source/ThirdParty/glu/libtess/mesh.h Source/ThirdParty/glu/libtess/memalloc.h Source/ThirdParty/glu/libtess/mesh.c Source/ThirdParty/glu/libtess/render.h Source/ThirdParty/glu/libtess/tess.c Copyright: 1991-2000 Silicon Graphics, Inc. License: FreeB-1.1 Files: Source/autotools/acinclude.m4 Copyright: 2008 Tim Toolan License: all-permissive Files: Source/autotools/dolt.m4 Copyright: 2007-2008 Josh Triplett License: all-permissive Files: Source/WebCore/inspector/front-end/cssNamedFlows.css Source/WebCore/inspector/front-end/CSSNamedFlowView.js Source/WebCore/inspector/front-end/CSSNamedFlowCollectionsView.js Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.h Source/WebCore/platform/graphics/filters/CustomFilterValidatedProgram.cpp Source/WebCore/platform/graphics/filters/CustomFilterCompiledProgram.h Source/WebCore/platform/graphics/filters/CustomFilterOperation.h Source/WebCore/platform/graphics/filters/FECustomFilter.h Source/WebCore/platform/graphics/filters/CustomFilterProgramInfo.cpp Source/WebCore/platform/graphics/filters/CustomFilterCompiledProgram.cpp Source/WebCore/platform/graphics/filters/CustomFilterNumberParameter.h Source/WebCore/platform/graphics/filters/CustomFilterMesh.cpp Source/WebCore/platform/graphics/filters/CustomFilterGlobalContext.cpp Source/WebCore/platform/graphics/filters/CustomFilterMeshGenerator.cpp Source/WebCore/platform/graphics/filters/ValidatedCustomFilterOperation.h Source/WebCore/platform/graphics/filters/CustomFilterParameterList.cpp Source/WebCore/platform/graphics/filters/CustomFilterRenderer.cpp Source/WebCore/platform/graphics/filters/CustomFilterMesh.h Source/WebCore/platform/graphics/filters/CustomFilterProgram.cpp Source/WebCore/platform/graphics/filters/CustomFilterGlobalContext.h Source/WebCore/platform/graphics/filters/CustomFilterMeshGenerator.h Source/WebCore/platform/graphics/filters/ValidatedCustomFilterOperation.cpp Source/WebCore/platform/graphics/filters/CustomFilterParameter.h Source/WebCore/platform/graphics/filters/CustomFilterRenderer.h Source/WebCore/platform/graphics/filters/CustomFilterTransformParameter.h Source/WebCore/platform/graphics/filters/CustomFilterParameterList.h Source/WebCore/platform/graphics/filters/CustomFilterProgram.h Source/WebCore/platform/graphics/filters/CustomFilterOperation.cpp Source/WebCore/platform/graphics/filters/texmap/CustomFilterValidatedProgramTextureMapper.cpp Source/WebCore/platform/graphics/filters/texmap/TextureMapperPlatformCompiledProgram.h Source/WebCore/platform/graphics/filters/CustomFilterProgramInfo.h Source/WebCore/platform/graphics/filters/CustomFilterConstants.h Source/WebCore/platform/graphics/filters/CustomFilterArrayParameter.h Source/WebCore/platform/graphics/filters/CustomFilterProgramClient.h Source/WebCore/platform/graphics/filters/FECustomFilter.cpp Source/WebCore/rendering/RenderLayerFilterInfo.cpp Source/WebCore/rendering/FlowThreadController.h Source/WebCore/rendering/ExclusionInterval.h Source/WebCore/rendering/RenderFlowThread.cpp Source/WebCore/rendering/ExclusionShapeInsideInfo.h Source/WebCore/rendering/RenderLayerFilterInfo.h Source/WebCore/rendering/FlowThreadController.cpp Source/WebCore/rendering/ExclusionPolygon.h Source/WebCore/rendering/RenderFlowThread.h Source/WebCore/rendering/ExclusionRectangle.cpp Source/WebCore/rendering/style/StyleCachedShader.cpp Source/WebCore/rendering/style/BasicShapes.h Source/WebCore/rendering/style/BasicShapes.cpp Source/WebCore/rendering/style/StylePendingShader.h Source/WebCore/rendering/style/StyleCustomFilterProgram.h Source/WebCore/rendering/style/ExclusionShapeValue.h Source/WebCore/rendering/style/StyleShader.h Source/WebCore/rendering/style/StyleCachedShader.h Source/WebCore/rendering/ExclusionShapeInsideInfo.cpp Source/WebCore/rendering/ExclusionRectangle.h Source/WebCore/rendering/RenderRegion.cpp Source/WebCore/rendering/ClipPathOperation.h Source/WebCore/rendering/ExclusionShape.h Source/WebCore/rendering/ExclusionInterval.cpp Source/WebCore/rendering/ExclusionPolygon.cpp Source/WebCore/rendering/ExclusionShape.cpp Source/WebCore/rendering/RenderRegion.h Source/WebCore/loader/cache/CachedShader.cpp Source/WebCore/loader/cache/CachedShader.h Source/WebCore/dom/WebKitNamedFlow.idl Source/WebCore/dom/DOMNamedFlowCollection.h Source/WebCore/dom/DOMNamedFlowCollection.cpp Source/WebCore/dom/NamedFlowCollection.h Source/WebCore/dom/NamedFlowCollection.cpp Source/WebCore/dom/WebKitNamedFlow.cpp Source/WebCore/dom/DOMNamedFlowCollection.idl Source/WebCore/dom/WebKitNamedFlow.h Source/WebCore/css/WebKitCSSShaderValue.h Source/WebCore/css/WebKitCSSArrayFunctionValue.h Source/WebCore/css/WebKitCSSRegionRule.idl Source/WebCore/css/WebKitCSSShaderValue.cpp Source/WebCore/css/WebKitCSSArrayFunctionValue.cpp Source/WebCore/css/CSSBasicShapes.h Source/WebCore/css/WebKitCSSMixFunctionValue.h Source/WebCore/css/BasicShapeFunctions.h Source/WebCore/css/BasicShapeFunctions.cpp Source/WebCore/css/CSSBasicShapes.cpp Source/WebCore/css/WebKitCSSMixFunctionValue.cpp Source/WebCore/css/WebKitCSSMixFunctionValue.idl Source/WebKit2/Shared/CoordinatedGraphics/WebCustomFilterProgramProxy.cpp Source/WebKit2/Shared/CoordinatedGraphics/WebCustomFilterProgramProxy.h Source/WebKit2/Shared/CoordinatedGraphics/WebCustomFilterOperation.h Copyright: 2011-2012 Adobe Systems Incorporated License: BSD-2-clause Files: Source/WebCore/platform/network/curl/ResourceHandleManager.cpp Source/WebKit/win/WebView.cpp Source/WebKit/win/WebView.h Tools/WinLauncher/WinLauncher.cpp Copyright: 2004-2012 Apple Computer, Inc. 2006 Michael Emmel 2007 Alp Toker 2007 Holger Hans Peter Freyther 2008 Collabora Ltd. 2008 Nuanti Ltd. 2009-2011 Appcelerator Inc. 2009-2011 Brent Fulgham License: BSD-2-clause Files: Source/ThirdParty/qunit/qunit/qunit.js Copyright: 2008 Ariel Flesler 2011 John Resig, Jörn Zaefferer License: Mixed MIT + BSD Copyright 2013 jQuery Foundation and other contributors http://jquery.com/ . Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. . Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Files: Source/WebKit/gtk/webkit/webkitgeolocationpolicydecision.cpp Source/WebKit/gtk/webkit/webkitgeolocationpolicydecision.h Source/WebKit/gtk/tests/test_utils.c Copyright: 2010 Arno Renevier License: LGPL-2+ Files: Source/WebCore/platform/win/DragDataWin.cpp Tools/DumpRenderTree/win/DRTDropSource.h Tools/DumpRenderTree/win/EventSender.cpp Tools/DumpRenderTree/win/DRTDropSource.cpp Tools/DumpRenderTree/win/DRTDataObject.h Tools/DumpRenderTree/win/DRTDataObject.cpp Copyright: 2012 Baidu Inc 2007-2008 Apple Inc License: BSD-2-clause Files: Tools/Scripts/webkitpy/common/checksvnconfigfile.py Tools/Scripts/webkitpy/tool/steps/addsvnmimetypeforpng.py Tools/Scripts/webkitpy/tool/steps/addsvnmimetypeforpng_unittest.py Tools/Scripts/webkitpy/style/checkers/png.py Tools/Scripts/webkitpy/style/checkers/png_unittest.py Copyright: 2012 Balazs Ankes University of Szeged License: BSD-2-clause Files: Tools/DumpRenderTree/win/ImageDiffCairo.cpp Tools/DumpRenderTree/cg/ImageDiffCG.cpp Copyright: 2005, 2007 Apple Inc. 2005 Ben La Monica 2011 Brent Fulgham License: BSD-2-clause Files: Source/WebCore/inspector/front-end/Spectrum.js Copyright: 2011 Brian Grinstead License: BSD-3-clause Files: Tools/Scripts/update-webkit-wincairo-libs Tools/Scripts/update-webkit-dependency Copyright: 2005, 2006, 2007 Apple Computer, Inc. 2011 Carl Lobo 2012 Brent Fulgham License: BSD-3-clause Files: Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLES.cpp Source/WebCore/platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp Source/WebCore/platform/gtk/AsyncFileSystemGtk.h Source/WebCore/platform/gtk/AsyncFileSystemGtk.cpp Tools/DumpRenderTree/gtk/EventSender.cpp Copyright: 2007, 2008 Apple Inc. 2011 Google Inc. 2012 ChangSeok Oh 2010 Igalia S.L. 2009 Holger Hans Peter Freyther 2009 Zan Dobersek 2012 Research In Motion Limited. License: BSD-3-clause Files: Tools/Scripts/webkitperl/VCSUtils_unittest/parseSvnProperty.pl Tools/Scripts/webkitperl/VCSUtils_unittest/parseDiffHeader.pl Tools/Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffHeader.pl Tools/Scripts/webkitperl/VCSUtils_unittest/parseSvnDiffFooter.pl Tools/Scripts/webkitperl/VCSUtils_unittest/parseSvnPropertyValue.pl Tools/Scripts/webkitperl/VCSUtils_unittest/parseChunkRange.pl Tools/Scripts/webkitperl/VCSUtils_unittest/generatePatchCommand.pl Tools/Scripts/webkitperl/VCSUtils_unittest/runPatchCommand.pl Tools/Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatch.pl Tools/Scripts/webkitpy/common/system/autoinstall.py Tools/Scripts/webkitpy/common/multiprocessing_bootstrap.py Tools/Scripts/webkitpy/style/patchreader.py Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py Tools/Scripts/webkitpy/style/checkers/text.py Tools/Scripts/webkitpy/style/checkers/cpp.py Tools/Scripts/webkitpy/style/patchreader_unittest.py Tools/Scripts/webkitpy/style/checker_unittest.py Tools/Scripts/webkitpy/style/filereader.py Tools/Scripts/webkitpy/style/checker.py Tools/Scripts/webkit-patch Tools/Scripts/test-webkit-scripts Tools/Scripts/test-webkitpy Tools/Scripts/check-webkit-style Tools/Scripts/svn-apply Tools/Scripts/test-webkitperl Tools/Scripts/VCSUtils.pm Tools/Scripts/svn-unapply Copyright: 2009-2010 Chris Jerdonek 2010-2011 Research in Motion Limited 2012 Daniel Bates 2009 Daniel Krech 2005-2011 Apple Inc. 2009, 2011, 2012 Google Inc. 2010 ProFUSION embedded systems 2009 Torch Mobile Inc. 2011 Code Aurora Forum 2009 Cameron McCormack License: BSD-3-clause Files: Tools/Scripts/webkitperl/VCSUtils_unittest/setChangeLogDateAndReviewer.pl Tools/Scripts/webkitperl/VCSUtils_unittest/parseDiff.pl Tools/Scripts/webkitperl/VCSUtils_unittest/parseGitDiffHeader.pl Tools/Scripts/webkitperl/VCSUtils_unittest/prepareParsedPatch.pl Tools/Scripts/webkitperl/VCSUtils_unittest/fixChangeLogPatchThenSetChangeLogDateAndReviewer.pl Tools/Scripts/webkitperl/VCSUtils_unittest/parsePatch.pl Tools/Scripts/webkitpy/thirdparty/__init__.py Tools/Scripts/webkitpy/common/system/logutils_unittest.py Tools/Scripts/webkitpy/common/system/logutils.py Tools/Scripts/webkitpy/common/system/logtesting.py Tools/Scripts/webkitpy/test/finder.py Tools/Scripts/webkitpy/test/main.py Tools/Scripts/webkitpy/test/printer.py Tools/Scripts/webkitpy/style/main_unittest.py Tools/Scripts/webkitpy/style/filter.py Tools/Scripts/webkitpy/style/main.py Tools/Scripts/webkitpy/style/filter_unittest.py Tools/Scripts/webkitpy/style/optparser_unittest.py Tools/Scripts/webkitpy/style/error_handlers.py Tools/Scripts/webkitpy/style/checkers/common.py Tools/Scripts/webkitpy/style/checkers/python_unittest.py Tools/Scripts/webkitpy/style/checkers/common_unittest.py Tools/Scripts/webkitpy/style/checkers/python.py Tools/Scripts/webkitpy/style/error_handlers_unittest.py Tools/Scripts/webkitpy/style/filereader_unittest.py Tools/Scripts/webkitpy/style/optparser.py Copyright: 2010 Chris Jerdonek 2010 Research in Motion Limited 2012 Google Inc. License: BSD-2-clause Files: Source/WebCore/loader/cache/CachedSVGDocument.h Source/WebCore/loader/cache/CachedSVGDocument.cpp Copyright: 2011 Cosmin Truta 2012 University of Szeged 2012 Renata Hodovan License: LGPL-2+ Files: Tools/TestResultServer/static-dashboards/* Copyright: 2012 Google Inc. 2012 Zan Dobersek License: BSD-3-clause Files: Tools/TestResultServer/static-dashboards/dygraph-combined.js Copyright: 2006-2009 Dan Vanderkam License: MIT Files: Source/WebKit/chromium/scripts/jsmin.py Copyright: 2002 Douglas Crockford License: BSD-3-clause Files: Tools/Scripts/prepare-ChangeLog Copyright: 2000, 2001 Eazel, Inc. 2002, 2003, 2004, 2005, 2006, 2007 Apple Inc. 2009 Torch Mobile, Inc. 2009 Cameron McCormack License: LGPL-2+ Files: Source/WebCore/platform/graphics/cpu/arm/filters/FECompositeArithmeticNEON.h Copyright: 2011 University of Szeged 2011 Felician Marton License: BSD-2-clause Files: Source/WebKit/qt/WebCoreSupport/InitWebCoreQt.cpp Source/WebKit/qt/WebCoreSupport/InitWebCoreQt.h Copyright: 2011 Hewlett-Packard Development Company, L.P. License: BSD-3-clause Files: Source/WebCore/platform/graphics/pango/FontPango.cpp Copyright: 2006 Apple Computer, Inc. 2006 Michael Emmel 2007 Hiroyuki Ikezoe 2007 Kouhei Sutou 2007 Alp Toker 2008 Xan Lopez 2008 Nuanti Ltd. 2011 ProFUSION embedded systems License: BSD-2-clause Files: Tools/EWebLauncher/main.c Source/WebKit/efl/WebCoreSupport/DragClientEfl.cpp Source/WebKit/efl/WebCoreSupport/EditorClientEfl.h Source/WebKit/efl/WebCoreSupport/FrameLoaderClientEfl.h Source/WebCore/page/efl/EventHandlerEfl.cpp Source/WebCore/plugins/efl/PluginPackageEfl.cpp Source/WebCore/plugins/efl/PluginViewEfl.cpp Source/WebCore/platform/qt/GamepadsQt.cpp Source/WebCore/platform/qt/LocalizedStringsQt.cpp Source/WebCore/platform/efl/ScrollbarThemeEfl.h Source/WebCore/platform/efl/SoundEfl.cpp Source/WebCore/platform/efl/LocalizedStringsEfl.cpp Source/WebCore/platform/efl/LanguageEfl.cpp Source/WebCore/platform/efl/PlatformWheelEventEfl.cpp Source/WebCore/platform/efl/PlatformMouseEventEfl.cpp Source/WebCore/platform/efl/ContextMenuItemEfl.cpp Source/WebCore/platform/efl/ScrollbarThemeEfl.cpp Source/WebCore/platform/efl/ScrollViewEfl.cpp Source/WebCore/platform/efl/ScrollbarEfl.h Source/WebCore/platform/graphics/efl/IconEfl.cpp Copyright: 2008 INdT - Instituto Nokia de Tecnologia 2009-2010 Samsung Electronics 2009-2010 ProFUSION embedded systems 2012 Intel Corporation 2006 Zack Rusin 2006-2011 Apple Inc. 2008 Nuanti Ltd. 2010 Nokia Corporation and/or its subsidiary(-ies). 2007 Staikos Computing Services Inc. 2006 Michael Emmel 2008 Christian Dywan 2008 Kenneth Rohde Christiansen License: BSD-2-clause Files: Source/WebKit/efl/WebCoreSupport/InspectorClientEfl.h Source/WebKit/efl/WebCoreSupport/DragClientEfl.h Source/WebCore/platform/efl/PlatformScreenEfl.cpp Copyright: 2007 Apple Inc. 2008 INdT - Instituto Nokia de Tecnologia 2009-2010 ProFUSION embedded systems 2009-2010 Samsung Electronics 2007 Holger Hans Peter Freyther 2012 Intel Corporation 2010 Nokia Corporation and/or its subsidiary(-ies). License: BSD-3-clause Files: Source/WebKit/efl/WebCoreSupport/PlatformStrategiesEfl.cpp Source/WebKit/efl/WebCoreSupport/SearchPopupMenuEfl.cpp Source/WebKit/efl/WebCoreSupport/EditorClientEfl.cpp Source/WebKit/efl/WebCoreSupport/InspectorClientEfl.cpp Source/WebKit/efl/WebCoreSupport/ChromeClientEfl.h Source/WebKit/efl/WebCoreSupport/PopupMenuEfl.cpp Source/WebKit/efl/ewk/EWebKit.h Source/WebKit/efl/DefaultTheme/default.edc widget/mediacontrol/seekbackwardbutton/seekbackward_button.edc Source/WebKit/efl/DefaultTheme/widget/mediacontrol/mutebutton/mute_button.edc Source/WebKit/efl/DefaultTheme/widget/mediacontrol/playpausebutton/playpause_button.ed Source/WebKit/efl/DefaultTheme/widget/radio/radio.edc Source/WebKit/efl/DefaultTheme/widget/search/cancel/search_cancel.edc Source/WebKit/efl/DefaultTheme/widget/search/field/search_field.edc Source/WebKit/efl/DefaultTheme/widget/search/decoration/search_decoration.edc Source/WebKit/efl/DefaultTheme/widget/file/file.edc Source/WebKit/efl/DefaultTheme/widget/button/button.edc Source/WebKit/efl/DefaultTheme/widget/slider/slider.edc Source/WebKit/efl/DefaultTheme/widget/entry/entry.edc Source/WebKit/efl/DefaultTheme/widget/check/check.edc Source/WebKit/efl/DefaultTheme/widget/combo/combo.edc Source/WebKit/efl/DefaultTheme/widget/scrollbar/scrollbar.edc Source/WebKit/efl/DefaultTheme/widget/mediacontrol/seekforwardbutton/seekforward_button.edc Source/WebCore/platform/efl/PasteboardEfl.cpp Source/WebCore/platform/efl/ClipboardEfl.cpp Source/WebCore/platform/efl/ScrollbarEfl.cpp Source/WebCore/platform/efl/ContextMenuEfl.cpp Source/WebCore/platform/efl/LoggingEfl.cpp Source/WebCore/platform/efl/RenderThemeEfl.cpp Source/WebCore/platform/efl/RenderThemeEfl.h Source/WebCore/platform/efl/DragDataEfl.cpp Source/WebCore/platform/efl/EventLoopEfl.cpp Source/WebCore/platform/efl/ClipboardEfl.h Source/WebCore/platform/efl/DragImageEfl.cpp Source/WebCore/platform/graphics/efl/IntPointEfl.cpp Copyright: 2007 Holger Hans Peter Freyther 2006-2008 Apple Inc. 2008 INdT - Instituto Nokia de Tecnologia 2009-2010 Samsung Electronics 2009-2010 ProFUSION embedded systems 2007 Alp Toker 2008 Collabora 2010 Nokia Corporation and/or its subsidiary(-ies). 2008 Trolltech ASA 2012 Intel Corporation 2006 Nikolas Zimmermann 2006 Zack Rusin 2008 Nuanti Ltd. License: LGPL-2+ Files: Source/WebCore/platform/graphics/cairo/GraphicsContextPlatformPrivateCairo.h Source/WebCore/platform/graphics/cairo/FontCairoHarfbuzzNG.cpp Source/WebCore/platform/graphics/cairo/ImageCairo.cpp Source/WebCore/platform/graphics/cairo/FontCairo.cpp Source/WebCore/platform/graphics/cairo/BitmapImageCairo.cpp Source/WebCore/platform/graphics/cairo/GraphicsContext3DCairo.cpp Source/WebCore/platform/graphics/cairo/PlatformContextCairo.cpp Source/WebCore/platform/graphics/cairo/DrawingBufferCairo.cpp Source/WebCore/platform/graphics/cairo/ImageBufferCairo.cpp Source/WebCore/platform/graphics/cairo/TransformationMatrixCairo.cpp Source/WebCore/platform/graphics/cairo/PlatformContextCairo.h Source/WebCore/platform/graphics/cairo/GraphicsContextCairo.cpp Source/WebCore/platform/graphics/cairo/FloatRectCairo.cpp Source/WebCore/platform/graphics/cairo/CairoUtilities.cpp Source/WebCore/platform/graphics/cairo/GradientCairo.cpp Source/WebCore/platform/graphics/cairo/PatternCairo.cpp Source/WebCore/platform/graphics/cairo/CairoUtilities.h Source/WebCore/platform/graphics/cairo/ImageBufferDataCairo.h Copyright: 2006, 2007, 2008, 2009 Apple Inc. 2012 Intel Corporation 2007 Alp Toker 2008, 2009 Dirk Schulze 2008 Nuanti Ltd. 2009 Brent Fulgham 2010, 2011 Igalia S.L. 2010 Research In Motion Limited 2008 Google Inc. License: BSD-2-clause Files: Source/WebKit/chromium/src/default/WebRenderTheme.cpp Source/WebKit/chromium/src/linux/WebRenderTheme.cpp Source/WebKit/chromium/public/default/WebRenderTheme.h Source/WebKit/chromium/public/linux/WebRenderTheme.h Copyright: 2009-2010 Joel Stanley License: BSD-3-clause Files: Source/WebCore/platform/network/soup/ResourceHandleSoup.cpp Copyright: 2004, 2005, 2006, 2007, 2009, 2010, 2011 Apple Inc. 2008 Alp Toker 2008 Xan Lopez 2008, 2010 Collabora Ltd. 2009 Holger Hans Peter Freyther 2009 Gustavo Noronha Silva 2009 Christian Dywan 2009, 2010, 2011, 2012 Igalia S.L. 2009 John Kjellberg 2012 Intel Corporation License: LGPL-2+ Files: Source/WebCore/bindings/objc/DOMEvents.mm Copyright: 2004, 2008, 2009 Apple Inc. 2006 Jonas Witt 2006 Samuel Weinig License: BSD-2-clause Files: Tools/DumpRenderTree/mac/EventSendingController.mm Copyright: 2005, 2006, 2007, 2008 Apple Inc. 2006 Jonas Witt 2006 Samuel Weinig 2006 Alexey Proskuryakov License: BSD-3-clause Files: Source/WebCore/platform/graphics/opentype/OpenTypeVerticalData.cpp Source/WebCore/platform/graphics/opentype/OpenTypeTypes.h Source/WebCore/platform/graphics/opentype/OpenTypeVerticalData.h Source/WebKit/chromium/tests/OpenTypeVerticalDataTest.cpp Copyright: 2012 Koji Ishii License: BSD-2-clause Files: Tools/Scripts/webkitpy/thirdparty/BeautifulSoup.py Copyright: 2004-2010 Leonard Richardson License: BSD-3-clause Files: Source/WebKit/gtk/webkit/webkitapplicationcache.cpp Source/WebKit/gtk/webkit/webkitapplicationcache.h Source/WebKit/gtk/tests/testapplicationcache.c Copyright: 2009 Jan Michael Alonzo 2011 Lukasz Slachciak License: LGPL-2+ Files: Tools/mangleme/* Copyright: 2004 Michal Zalewski License: LGPL-2+ Files: Source/WebKit/gtk/webkit/webkitwebsettings.cpp Source/WebKit/gtk/webkit/webkitwebview.cpp Copyright: 2007, 2008 Holger Hans Peter Freyther 2007, 2008, 2009 Christian Dywan 2007 Xan Lopez 2007, 2008 Alp Toker 2008 Collabora Ltd 2008 Jan Alonzo 2008 Gustavo Noronha Silva 2008 Nuanti Ltd. 2008, 2009, 2010 Collabora Ltd. 2009, 2010, 2012 Igalia S.L. 2009 Movial Creative Technologies Inc. 2009 Bobby Powers 2010 Joone Hur License: LGPL-2+ Files: Source/WebCore/plugins/gtk/PluginPackageGtk.cpp Copyright: 2006, 2007 Apple Inc. 2008 Collabora Ltd. 2008 Nuanti Ltd. 2008 Novell Inc. License: BSD-2-clause Files: Tools/DumpRenderTree/chromium/DRTTestRunner.cpp Tools/DumpRenderTree/chromium/DRTTestRunner.h Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.h Tools/DumpRenderTree/chromium/TestRunner/src/TestRunner.cpp Tools/DumpRenderTree/chromium/TestRunner/src/CppBoundClass.h Tools/DumpRenderTree/chromium/TestRunner/src/CppBoundClass.cpp Copyright: 2010 Google Inc. 2009-2010 Pawel Hajdan 2012 Apple Inc. License: BSD-3-clause Files: Source/WebCore/inspector/front-end/jsdifflib.js Copyright: 2007 Snowtide Informatics Systems, Inc. License: BSD-3-clause Files: Source/WebCore/testing/MallocStatistics.h Copyright: 2012 SoftAtHome License: BSD-2-clause Files: Source/JavaScriptCore/KeywordLookupGenerator.py Copyright: 2011 Apple Inc. 2012 Sony Network Entertainment. License: BSD-2-clause Files: Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceEditableText.cpp Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceAction.cpp Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceText.cpp Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceComponent.cpp Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceDocument.cpp Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceTable.cpp Source/WebCore/accessibility/atk/WebKitAccessibleUtil.cpp Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceImage.cpp Source/WebCore/accessibility/atk/WebKitAccessibleInterfaceSelection.cpp Source/WebCore/accessibility/atk/WebKitAccessibleWrapperAtk.cpp Source/WebCore/plugins/gtk/gtk2xtbin.c Source/WebCore/plugins/gtk/xembed.h Source/WebCore/plugins/gtk/gtk2xtbin.h Copyright: 2002 Sun Microsystems, Inc. 2008 Nuanti Ltd. 2009 Jan Alonzo 2011, 2012 Igalia S.L. 1999 Lars Knoll 1999 Antti Koivisto 2003, 2004, 2005, 2006, 2007, 2008 Apple Inc. 1999-2000 Harri Porten License: LGPL-2+ Files: Source/WebCore/platform/graphics/gpu/opencl/OpenCLFETurbulence.cpp Source/WebCore/platform/graphics/gpu/opencl/OpenCLFESourceAlpha.cpp Source/WebCore/platform/graphics/gpu/opencl/FilterContextOpenCL.cpp Source/WebCore/platform/graphics/gpu/opencl/FilterContextOpenCL.h Source/WebCore/platform/graphics/gpu/opencl/OpenCLFESourceGraphic.cpp Copyright: 2012 Tamas Czene 2012 University of Szeged License: BSD-2-clause Files: Source/WTF/wtf/wx/StringWx.cpp Copyright: 2007 Vaclav Slavik 2007 Kevin Ollivier License: BSD-2-clause Files: Source/WebCore/dom/GenericEventQueue.h Source/WebCore/rendering/RenderTextTrackCue.cpp Source/WebCore/rendering/RenderTextTrackCue.h Source/WebCore/dom/GenericEventQueue.cpp Copyright: 2012 Victor Carbune License: BSD-2-clause Files: Source/JavaScriptCore/disassembler/udis86/* Copyright: 2002-2009 Vivek Thampi License: BSD-2-clause Files: Source/WebCore/platform/graphics/surfaces/win/GraphicsSurfaceWin.cpp Source/WebKit2/UIProcess/API/qt/qquicknetworkrequest_p.h Source/WebKit2/UIProcess/API/qt/qquicknetworkreply.cpp Source/WebKit2/UIProcess/API/qt/qquicknetworkrequest.cpp Source/WebKit2/UIProcess/API/qt/qquickurlschemedelegate_p.h Source/WebKit2/UIProcess/API/qt/qquickurlschemedelegate.cpp Source/WebKit2/UIProcess/API/qt/qquicknetworkreply_p.h Copyright: 2011-2012 Zeno Albisser License: LGPL-2+ Files: Source/WebKit2/WebProcess/qt/QtNetworkReply.h Source/WebKit2/WebProcess/qt/QtNetworkAccessManager.cpp Source/WebKit2/WebProcess/qt/QtNetworkReply.cpp Source/WebKit2/WebProcess/qt/QtNetworkAccessManager.h Source/WebKit2/Shared/qt/QtNetworkRequestData.cpp Source/WebKit2/Shared/qt/QtNetworkRequestData.h Source/WebKit2/Shared/qt/QtNetworkReplyData.cpp Source/WebKit2/Shared/qt/QtNetworkReplyData.h Copyright: 2011 Zeno Albisser 2012 Nokia Corporation and/or its subsidiary(-ies) License: BSD-2-clause License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: MIT-apple IMPORTANT: This Apple software is supplied to you by Apple Inc. ("Apple") in consideration of your agreement to the following terms, and your use, installation, modification or redistribution of this Apple software constitutes acceptance of these terms. If you do not agree with these terms, please do not use, install, modify or redistribute this Apple software. . In consideration of your agreement to abide by the following terms, and subject to these terms, Apple grants you a personal, non-exclusive license, under Apple's copyrights in this original Apple software (the "Apple Software"), to use, reproduce, modify and redistribute the Apple Software, with or without modifications, in source and/or binary forms; provided that if you redistribute the Apple Software in its entirety and without modifications, you must retain this notice and the following text and disclaimers in all such redistributions of the Apple Software. Neither the name, trademarks, service marks or logos of Apple Inc. may be used to endorse or promote products derived from the Apple Software without specific prior written permission from Apple. Except as expressly stated in this notice, no other rights or licenses, express or implied, are granted by Apple herein, including but not limited to any patent rights that may be infringed by your derivative works or by other works in which the Apple Software may be incorporated. . The Apple Software is provided by Apple on an "AS IS" basis. APPLE MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS. . IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: all-permissive Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. License: copyright-disclaimer The author disclaims copyright to this source code. In place of a legal notice, here is a blessing: . May you do good and not evil. May you find forgiveness for yourself and forgive others. May you share freely, never taking more than you give. License: X11 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: ISCL Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. . THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. License: Expat Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: FreeB-1.1 Definitions. . "Additional Notice Provisions" means such additional provisions as appear in the Notice in Original Code under the heading "Additional Notice Provisions." . "Covered Code" means the Original Code or Modifications, or any combination thereof. . "Hardware" means any physical device that accepts input, processes input, stores the results of processing, and/or provides output. . "Larger Work" means a work that combines Covered Code or portions thereof with code not governed by the terms of this License. . "Licensable" means having the right to grant, to the maximum extent possible, whether at the time of the initial grant or subsequently acquired, any and all of the rights conveyed herein. . "License" means this document. . "Licensed Patents" means patent claims Licensable by SGI that are infringed by the use or sale of Original Code or any Modifications provided by SGI, or any combination thereof. . "Modifications" means any addition to or deletion from the substance or structure of the Original Code or any previous Modifications. When Covered Code is released as a series of files, a Modification is: . Any addition to the contents of a file containing Original Code and/or addition to or deletion from the contents of a file containing previous Modifications. . Any new file that contains any part of the Original Code or previous Modifications. . "Notice" means any notice in Original Code or Covered Code, as required by and in compliance with this License. . "Original Code" means source code of computer software code that is described in the source code Notice required by Exhibit A as Original Code, and updates and error corrections specifically thereto. . "Recipient" means an individual or a legal entity exercising rights under, and complying with all of the terms of, this License or a future version of this License issued under Section 8. For legal entities, "Recipient" includes any entity that controls, is controlled by, or is under common control with Recipient. For purposes of this definition, "control" of an entity means (a) the power, direct or indirect, to direct or manage such entity, or (b) ownership of fifty percent (50%) or more of the outstanding shares or beneficial ownership of such entity. . "Recipient Patents" means patent claims Licensable by a Recipient that are infringed by the use or sale of Original Code or any Modifications provided by SGI, or any combination thereof. . "SGI" means Silicon Graphics, Inc. . "SGI Patents" means patent claims Licensable by SGI other than the Licensed Patents. . License Grant and Restrictions. . SGI License Grant. Subject to the terms of this License and any third party intellectual property claims, for the duration of intellectual property protections inherent in the Original Code, SGI hereby grants Recipient a worldwide, royalty-free, non-exclusive license, to do the following: (i) under copyrights Licensable by SGI, to reproduce, distribute, create derivative works from, and, to the extent applicable, display and perform the Original Code and/or any Modifications provided by SGI alone and/or as part of a Larger Work; and (ii) under any Licensable Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. Recipient accepts the terms and conditions of this License by undertaking any of the aforementioned actions. The patent license shall apply to the Covered Code if, at the time any related Modification is added, such addition of the Modification causes such combination to be covered by the Licensed Patents. The patent license in Section 2.1(ii) shall not apply to any other combinations that include the Modification. No patent license is provided under SGI Patents for infringements of SGI Patents by Modifications not provided by SGI or combinations of Original Code and Modifications not provided by SGI. . Recipient License Grant. Subject to the terms of this License and any third party intellectual property claims, Recipient hereby grants SGI and any other Recipients a worldwide, royalty-free, non-exclusive license, under any Recipient Patents, to make, have made, use, sell, offer for sale, import and/or otherwise transfer the Original Code and/or any Modifications provided by SGI. . No License For Hardware Implementations. The licenses granted in Section 2.1 and 2.2 are not applicable to implementation in Hardware of the algorithms embodied in the Original Code or any Modifications provided by SGI . . Redistributions. . Retention of Notice/Copy of License. The Notice set forth in Exhibit A, below, must be conspicuously retained or included in any and all redistributions of Covered Code. For distributions of the Covered Code in source code form, the Notice must appear in every file that can include a text comments field; in executable form, the Notice and a copy of this License must appear in related documentation or collateral where the Recipient's rights relating to Covered Code are described. Any Additional Notice Provisions which actually appears in the Original Code must also be retained or included in any and all redistributions of Covered Code. . Alternative License. Provided that Recipient is in compliance with the terms of this License, Recipient may, so long as without derogation of any of SGI's rights in and to the Original Code, distribute the source code and/or executable version(s) of Covered Code under (1) this License; (2) a license identical to this License but for only such changes as are necessary in order to clarify Recipient's role as licensor of Modifications; and/or (3) a license of Recipient's choosing, containing terms different from this License, provided that the license terms include this Section 3 and Sections 4, 6, 7, 10, 12, and 13, which terms may not be modified or superseded by any other terms of such license. If Recipient elects to use any license other than this License, Recipient must make it absolutely clear that any of its terms which differ from this License are offered by Recipient alone, and not by SGI. It is emphasized that this License is a limited license, and, regardless of the license form employed by Recipient in accordance with this Section 3.2, Recipient may relicense only such rights, in Original Code and Modifications by SGI, as it has actually been granted by SGI in this License. . Indemnity. Recipient hereby agrees to indemnify SGI for any liability incurred by SGI as a result of any such alternative license terms Recipient offers. . Termination. This License and the rights granted hereunder will terminate automatically if Recipient breaches any term herein and fails to cure such breach within 30 days thereof. Any sublicense to the Covered Code that is properly granted shall survive any termination of this License, absent termination by the terms of such sublicense. Provisions that, by their nature, must remain in effect beyond the termination of this License, shall survive. . No Trademark Or Other Rights. This License does not grant any rights to: (i) any software apart from the Covered Code, nor shall any other rights or licenses not expressly granted hereunder arise by implication, estoppel or otherwise with respect to the Covered Code; (ii) any trade name, trademark or service mark whatsoever, including without limitation any related right for purposes of endorsement or promotion of products derived from the Covered Code, without prior written permission of SGI; or (iii) any title to or ownership of the Original Code, which shall at all times remains with SGI. All rights in the Original Code not expressly granted under this License are reserved. . Compliance with Laws; Non-Infringement. There are various worldwide laws, regulations, and executive orders applicable to dispositions of Covered Code, including without limitation export, re-export, and import control laws, regulations, and executive orders, of the U.S. government and other countries, and Recipient is reminded it is obliged to obey such laws, regulations, and executive orders. Recipient may not distribute Covered Code that (i) in any way infringes (directly or contributorily) any intellectual property rights of any kind of any other person or entity or (ii) breaches any representation or warranty, express, implied or statutory, to which, under any applicable law, it might be deemed to have been subject. . Claims of Infringement. If Recipient learns of any third party claim that any disposition of Covered Code and/or functionality wholly or partially infringes the third party's intellectual property rights, Recipient will promptly notify SGI of such claim. . Versions of the License. SGI may publish revised and/or new versions of the License from time to time, each with a distinguishing version number. Once Covered Code has been published under a particular version of the License, Recipient may, for the duration of the license, continue to use it under the terms of that version, or choose to use such Covered Code under the terms of any subsequent version published by SGI. Subject to the provisions of Sections 3 and 4 of this License, only SGI may modify the terms applicable to Covered Code created under this License. . DISCLAIMER OF WARRANTY. COVERED CODE IS PROVIDED "AS IS." ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. SGI ASSUMES NO RISK AS TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE. SHOULD THE SOFTWARE PROVE DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO THIS DISCLAIMER. . LIMITATION OF LIABILITY. UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT, OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND LIMITATION MAY NOT APPLY TO RECIPIENT. . Indemnity. Recipient shall be solely responsible for damages arising, directly or indirectly, out of its utilization of rights under this License. Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc. from and against any loss, liability, damages, costs or expenses (including the payment of reasonable attorneys fees) arising out of Recipient's use, modification, reproduction and distribution of the Covered Code or out of any representation or warranty made by Recipient. . U.S. Government End Users. The Covered Code is a "commercial item" consisting of "commercial computer software" as such terms are defined in title 48 of the Code of Federal Regulations and all U.S. Government End Users acquire only the rights set forth in this License and are subject to the terms of this License. . Miscellaneous. This License represents the complete agreement concerning the its subject matter. If any provision of this License is held to be unenforceable, such provision shall be reformed so as to achieve as nearly as possible the same legal and economic effect as the original provision and the remainder of this License will remain in effect. This License shall be governed by and construed in accordance with the laws of the United States and the State of California as applied to agreements entered into and to be performed entirely within California between California residents. Any litigation relating to this License shall be subject to the exclusive jurisdiction of the Federal Courts of the Northern District of California (or, absent subject matter jurisdiction in such courts, the courts of the State of California), with venue lying exclusively in Santa Clara County, California, with the losing party responsible for costs, including without limitation, court costs and reasonable attorneys fees and expenses. The application of the United Nations Convention on Contracts for the International Sale of Goods is expressly excluded. Any law or regulation that provides that the language of a contract shall be construed against the drafter shall not apply to this License. . Exhibit A . License Applicability. Except to the extent portions of this file are made subject to an alternative license as permitted in the SGI Free Software License B, Version 1.1 (the "License"), the contents of this file are subject only to the provisions of the License. You may not use this file except in compliance with the License. You may obtain a copy of the License at Silicon Graphics, Inc., attn: Legal Services, 1600 Amphitheatre Parkway, Mountain View, CA 94043-1351, or at: . http://oss.sgi.com/projects/FreeB . Note that, as provided in the License, the Software is distributed on an "AS IS" basis, with ALL EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. . Original Code. The Original Code is: [name of software, version number, and release date], developed by Silicon Graphics, Inc. The Original Code is Copyright (c) [dates of first publication, as appearing in the Notice in the Original Code] Silicon Graphics, Inc. Copyright in any portions created by third parties is as indicated elsewhere herein. All Rights Reserved. . Additional Notice Provisions: [such additional provisions, if any, as appear in the Notice in the Original Code under the heading "Additional Notice Provisions"] License: LGPL-2+ This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. . You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA . On Debian systems, the complete text of the GNU Library General Public License can be found in `/usr/share/common-licenses/LGPL-2-1'. License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . Neither the name of {{the ORGANIZATION nor the names of its contributors}} may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY {{THE COPYRIGHT HOLDERS AND CONTRIBUTORS}} "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL {{THE COPYRIGHT HOLDER OR CONTRIBUTORS}} BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: Apache Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. . On Debian systems, the complete text of the Apache License can be found in `/usr/share/common-licenses/Apache-2.0'. License: BSD-2-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: . Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. . Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. . THIS SOFTWARE IS PROVIDED BY {{THE COPYRIGHT HOLDERS AND CONTRIBUTORS}} "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL {{THE COPYRIGHT HOLDER OR CONTRIBUTORS}} BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. . You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. . On Debian systems, the complete text of the GNU Public License 2 can be found in `/usr/share/common-licenses/Apache-2.0'. debian/control0000664000000000000000000001115212312273072010572 0ustar Source: qtwebkit-opensource-src Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian Qt/KDE Maintainers Uploaders: Fathi Boudra , Timo Jyrinki , Lisandro Damián Nicanor Pérez Meyer Build-Depends: debhelper (>= 9.0.0), flex, bison, gperf, python-minimal, python2.7, ruby, libgstreamer1.0-dev, libgstreamer-plugins-base1.0-dev, libicu-dev, libsqlite3-dev, libxml2-dev, mesa-common-dev, libgl1-mesa-dev [!armel !armhf] | libgl-dev [!armel !armhf], libgles2-mesa-dev [armel armhf] | libgles2-dev [armel armhf], libglib2.0-dev, libglu1-mesa-dev [!armel !armhf] | libglu-dev [!armel !armhf], libxrender-dev, libxslt1-dev, libqt5xmlpatterns5-private-dev (>= 5.0.2), qtbase5-private-dev (>= 5.0.2), libqt5opengl5-dev (>= 5.0.2), qtscript5-private-dev (>= 5.0.2), qtdeclarative5-private-dev (>= 5.0.2), pkg-config, pkg-kde-tools (>= 0.6.4), chrpath, libpng-dev, libjpeg-dev, libfontconfig1-dev, libxcomposite-dev, qtsensors5-dev, qtlocation5-dev, Build-Depends-Indep: libqt5sql5-sqlite, qttools5-dev-tools (>= 5.0.2) Standards-Version: 3.9.4 Section: libs Homepage: http://trac.webkit.org/wiki/QtWebKit Vcs-Git: git://anonscm.debian.org/pkg-kde/qt/qt5webkit.git Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-kde/qt/qt5webkit.git;a=summary Vcs-Bzr: https://code.launchpad.net/~kubuntu-packagers/kubuntu-packaging/qtwebkit-opensource-src Package: libqt5webkit5-dev Section: libdevel Architecture: any Pre-Depends: dpkg (>= 1.15.6~) Depends: qtbase5-dev, libqt5webkit5 (= ${binary:Version}), ${misc:Depends}, libgl1-mesa-dev [!armel !armhf] | libgl-dev [!armel !armhf], libgles2-mesa-dev [armel armhf] | libgles2-dev [armel armhf], libgstreamer-plugins-base1.0-dev, libqt5opengl5-dev, libxslt1-dev, qtlocation5-dev, qtsensors5-dev, Description: Web content engine library for Qt - development files QtWebKit provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application. . This package contains the development files needed to build Qt 5 applications using QtWebKit library. Package: libqt5webkit5 Architecture: any Multi-Arch: same Pre-Depends: dpkg (>= 1.15.6~), ${misc:Pre-Depends} Depends: ${misc:Depends}, ${shlibs:Depends} Description: Web content engine library for Qt QtWebKit provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application. . This package contains the QtWebKit libraries. Package: libqt5webkit5-qmlwebkitplugin Architecture: any Multi-Arch: same Pre-Depends: dpkg (>= 1.15.6~), ${misc:Pre-Depends} Depends: ${misc:Depends}, ${shlibs:Depends} Description: Qt WebKit QML plugin QtWebKit provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application. . This package contains the WebKit QML plugin for QtDeclarative. Package: libqt5webkit5-dbg Priority: extra Architecture: any Multi-Arch: same Section: debug Depends: libqt5webkit5 (= ${binary:Version}), ${misc:Depends} Description: Web content engine library for Qt - debugging symbols QtWebKit provides a Web browser engine that makes it easy to embed content from the World Wide Web into your Qt application. . This package contains the debugging symbols for the Qt WebKit library. Package: qtwebkit5-doc Priority: extra Architecture: all Section: doc Depends: ${misc:Depends} Description: Qt 5 webkit documentation Qt is a cross-platform C++ application framework. Qt's primary feature is its rich set of widgets that provide standard GUI functionality. . This package contains the documentation for the Qt 5 webkit libraries. Package: qtwebkit5-doc-html Priority: extra Architecture: all Section: doc Depends: ${misc:Depends} Description: Qt 5 webkit HTML documentation Qt is a cross-platform C++ application framework. Qt's primary feature is its rich set of widgets that provide standard GUI functionality. . This package contains the HTML documentation for the Qt 5 webkit libraries. debian/libqt5webkit5.install0000664000000000000000000000021512312273072013250 0ustar usr/lib/*/libQt5WebKit.so.5* usr/lib/*/libQt5WebKitWidgets.so.5* usr/lib/*/qt5/libexec/QtWebPluginProcess usr/lib/*/qt5/libexec/QtWebProcess debian/changelog0000664000000000000000000004423612312273072011052 0ustar qtwebkit-opensource-src (5.1.1-1ubuntu8) trusty; urgency=medium * Copy dont_pollute_pri_and_pc_with_private_deps.patch from Debian (LP: #1134745). -- Dmitry Shachnev Wed, 19 Mar 2014 14:07:02 +0400 qtwebkit-opensource-src (5.1.1-1ubuntu7) trusty; urgency=medium * Backport upstream patch to add AArch64 support. * Add a patch to disable JIT and YARR JIT when they are not needed. -- Dmitry Shachnev Sat, 15 Mar 2014 11:43:38 +0400 qtwebkit-opensource-src (5.1.1-1ubuntu6) trusty; urgency=medium * Rebuild in correct landing PPA. -- Timo Jyrinki Thu, 13 Mar 2014 19:04:22 +0000 qtwebkit-opensource-src (5.1.1-1ubuntu5) trusty; urgency=medium * Backporting fixes from QtWebKit 5.2 and rebuilding against the Qt 5.2 stack (avoid regressions with QtWebKit 5.2 on Touch) -- Ricardo Salveti de Araujo Thu, 13 Mar 2014 00:37:53 -0300 qtwebkit-opensource-src (5.1.1-1ubuntu4) trusty; urgency=medium * No change rebuild against libicu52 -- Dimitri John Ledkov Fri, 27 Dec 2013 08:32:20 +0000 qtwebkit-opensource-src (5.1.1-1ubuntu3) trusty; urgency=medium * Cherrypick patch from upstream/qt/webkit/ANGLE to fix FTBFS with bison 3.0. -- Dimitri John Ledkov Tue, 24 Dec 2013 14:26:17 +0000 qtwebkit-opensource-src (5.1.1-1ubuntu2) saucy; urgency=low * Drop libwebp-dev dependency and disable it, not in main. -- Timo Jyrinki Thu, 19 Sep 2013 16:18:00 +0300 qtwebkit-opensource-src (5.1.1-1ubuntu1) saucy; urgency=low [ Loïc Minier ] * FFE is LP: #1219695. [ Timo Jyrinki ] * New upstream release * Drop patches now in upstream: - fixTriggerOSKonWebPages.patch - fix_gcc48.patch - add_module_version.patch - DidFirstLayout.patch * Drop disable_geolocation_501.diff, builds again fine with the support * Refresh no_gc_sections.diff and LLIntCLoop32BigEndian.patch * Fix watch file * Sync with Debian 5.1.1-1, remaining changes: - Build-depend on qtsensors and qtlocation - Keep the LLIntCLoop32BigEndian, file_access patches - Keep private headers - Keep workaround for a upstream dependency problem * Enable JIT again on armhf (drop disabling_jit_for_arm.patch) * debian/patches/bug_118860_qtwebkit_511.patch - Add isMainFrame property (LP: #1217683) [ Ricardo Salveti de Araujo ] * Refresh add_experimentalDevicePixelRatio.patch based on latest changes from upstream * debian/patches/gstreamer-build-issue-gst10.patch: - Fixing build issue with gstreamer 1.0 as fullscreen window is not yet support but it gets used via moc * debian/control: - Changing qt build-deps to depend on >= 5.0.2 - Build-dep on gstreamer-1.0 instead of 0.10 -- Loïc Minier Thu, 19 Sep 2013 14:47:16 +0200 qtwebkit-opensource-src (5.1.1-1) unstable; urgency=low * New upstream release. * Tighten Qt 5 build dependencies. -- Lisandro Damián Nicanor Pérez Meyer Sun, 01 Sep 2013 14:22:55 -0300 qtwebkit-opensource-src (5.1.0-2) unstable; urgency=low * Upload to unstable. * Make m68k build with -gstabs instead of -g (Closes: #717686). -- Lisandro Damián Nicanor Pérez Meyer Mon, 12 Aug 2013 01:00:32 -0300 qtwebkit-opensource-src (5.1.0-1) experimental; urgency=low * New upstream release. * Fix watch file. * Bump Qt build depends to 5.1.0~. * Refresh pacthes. * Update symbols file. * Update install files. -- Lisandro Damián Nicanor Pérez Meyer Mon, 15 Jul 2013 12:16:00 -0300 qtwebkit-opensource-src (5.0.2-3) experimental; urgency=low * Update symbols file. -- Lisandro Damián Nicanor Pérez Meyer Wed, 26 Jun 2013 22:10:41 -0300 qtwebkit-opensource-src (5.0.2-2) experimental; urgency=low [ Timo Jyrinki ] * Drop save_memory.diff, not useful in its current form. * Set DEB_HOST_MULTIARCH in rules. [ Lisandro Damián Nicanor Pérez Meyer ] * Update symbols files. * Build the documentation shipped with this submodule as a build-indep task: - Add the necessary indep build dependencies: * qttools5-dev-tools to use qhelpgenerator. * libqt5sql5-sqlite to generate qch doc. - Build and create packages for qch and HTML doc formats. * Make the debug package also Multi-Arch: same. -- Lisandro Damián Nicanor Pérez Meyer Sun, 16 Jun 2013 23:46:10 -0300 qtwebkit-opensource-src (5.0.2-1) experimental; urgency=low * Initial release. (Closes: #697509) -- Lisandro Damián Nicanor Pérez Meyer Sun, 19 May 2013 15:37:43 -0300 qtwebkit-opensource-src (5.0.1-0ubuntu6) saucy; urgency=low * Don't remove private headers before trying to install them -- Didier Roche Mon, 15 Jul 2013 13:22:42 +0200 qtwebkit-opensource-src (5.0.1-0ubuntu5) saucy; urgency=low * Reship previous removed headers, they are needed by browser-app -- Didier Roche Mon, 15 Jul 2013 12:07:31 +0200 qtwebkit-opensource-src (5.0.1-0ubuntu4) saucy; urgency=low [ Dmitry Shachnev ] * Cherry-pick some changes from Debian experimental: + Export QT_SELECT instead of build-depending on qt5-default. + Do not install private headers. + Set DEB_HOST_MULTIARCH in rules. + Build the documentation shipped with this submodule as a build-indep task: - Add the necessary indep build dependencies: * qttools5-dev-tools to use qhelpgenerator. * libqt5sql5-sqlite to generate qch doc. + Build and create packages for qch and HTML doc formats. [ Timo Jyrinki ] * Build with g++-4.7 on armhf to prevent FTBFS. * Remove private headers also from libqt5webkit5-dev.install -- Timo Jyrinki Thu, 11 Jul 2013 08:52:53 +0300 qtwebkit-opensource-src (5.0.1-0ubuntu3) saucy; urgency=low * debian/patches/remove_qt4_deps.patch: - remove Qt4 deps from this Qt5 builds, seems that upstream will soon rename them back to those names and we'll have to deal with alternatives (LP: #1171553) -- Didier Roche Fri, 21 Jun 2013 10:22:54 +0200 qtwebkit-opensource-src (5.0.1-0ubuntu2) saucy; urgency=low [ Olivier Tilloy ] * debian/patches/DidFirstLayout.patch: added, fix progressive rendering (LP: #1119344) [ Ricardo Salveti de Araujo ] * debian/patches: renaming disabling_optmizations.patch to disabling_jit_for_arm.patch as the only thing it's disabling now is JIT (LP: #1153794) * debian/patches/add_experimentalDevicePixelRatio.patch: refreshing patch on top of qtwebkit 5.0.1 * debian/patches/devicePixelResolution.patch: updating patch description [ Ken VanDine ] * debian/control - Added missing depends to libqt5webkit5-dev [ Timo Jyrinki ] * 5.0.1 build until 5.0.2 DPR problems resolved * Fix pkgconfig Libs.private path (LP: #1125156) * Add patches from upstream: - debian/patches/LLIntCLoop32BigEndian.patch - debian/patches/fixTriggerOSKonWebPages.patch - debian/patches/file_access.patch (LP: #1175836) - debian/patches/fix_gcc48.patch - debian/patches/add_module_version.patch * Add Ubuntu patches: - debian/patches/add_experimentalDevicePixelRatio.patch - debian/patches/disabling_optmizations.patch -- Timo Jyrinki Mon, 20 May 2013 12:00:17 +0300 qtwebkit-opensource-src (5.0.1-0ubuntu1) raring; urgency=low * New upstream release. * debian/control: - Add missing Pre-Depends for xz compression - Rename packages by appending the major version - Depend on system png/jpeg libraries - Depend on qtsensors5-dev and qtlocation5-dev * debian/*.install: - Adjust to the new version and library renames * debian/rules: - Remove .la files - Remove rpath from QtWebProcess/QtWebPluginProcess * debian/copyright: - Fix invalid UTF-8 * Drop patches: - 01_lflags_as-needed.diff - 02_add_nostrip_for_debug_packages.diff - 03_hide_std_symbols.diff - 04_enable_debug_information.diff - Fix_build_with_GLib_2.31_changeset_r97269.patch - defines_qt_webkit.diff - glibc_hurd_mkspecs.diff - linux_amd64_no_overcommit.diff - upstream_changeset_r113848.diff - upstream_changeset_r93631.diff * Update patches: - 05_sparc_unaligned_access.diff - hurd.diff - no_gc_sections.diff (add i386/i686) - stabs_format_debug_info.diff (add i386/i686) - webkit_qt_hide_symbols.diff * Add patch: - disable_geolocation_501.diff (build failure) - save_memory.diff (try to conserve even more memory on arm) * Add Ubuntu specific patch: - devicePixelResolution.patch -- Timo Jyrinki Wed, 06 Feb 2013 12:30:39 +0000 qtwebkit (2.2.1-5) unstable; urgency=low * Team upload. * Re upload the package to fix the M-A uninstallability due to a binNMU (Closes: #676162). * This upload will get rebuilt with xz compression (Closes: #687036). Thanks Ansgar Burchardt for the patch. * Rewrite debian/copyright to DEP-5 (Closes: #673268). Thanks Elena ``of Valhalla'' Grandi and Tobias Bengfort. The current copyright is *huge*: 12637 lines. I have reviewed it but there still could be errors. -- Lisandro Damián Nicanor Pérez Meyer Sun, 18 Nov 2012 18:01:12 -0300 qtwebkit (2.2.1-4) unstable; urgency=high * Confirm new symbol file on all arches except armel and mipsel. However, hopefully, it will work on those two as well. * Urgency=high because we need multi-arch capable QtWebKit in testing as multi-arch Qt4 and non-multiarch QtWebKit do not play well for development purposes. -- Modestas Vainius Sun, 13 May 2012 12:24:37 +0300 qtwebkit (2.2.1-3) unstable; urgency=low * Build Source/WebCore/generated/* with hidden visibility as well (patch webkit_qt_hide_symbols.diff). This reduces a symbol file a lot and brings it back to manageable state. * Update symbol file: a bunch of private WebCore symbols are gone from symbol table now. -- Modestas Vainius Sat, 12 May 2012 20:58:34 +0300 qtwebkit (2.2.1-2) unstable; urgency=low * Upload to Sid. [ Fathi Boudra ] * Build with -gstabs on armhf instead of -g, like armel. [ Pino Toscano ] * glibc_mkspec.diff: rename to glibc_hurd_mkspecs.diff, and extend to apply also to the hurd-g++ mkspec. * Bump Qt build dependency to 4:4.8.1 (for the change in paths of QML imports). - update debian/libqtwebkit-qmlwebkitplugin.install accordingly - mark libqtwebkit-qmlwebkitplugin as Multi-Arch: same * Remove ${shlibs:Depends} from libqtwebkit4-dbg. -- Debian Qt/KDE Maintainers Tue, 01 May 2012 15:07:39 +0300 qtwebkit (2.2.1-1) experimental; urgency=low * New upstream release. * Drop adjust_symbols_visibility_for_webcore.diff - stolen upstream. * Update debian/compat: bump to 9. * Update debian/control: - bump Qt build dependency to 4:4.8.0~. This version introduce multiarch. - add Multi-Arch and Pre-Depends fields to libqtwebkit4 package. * Update debian/*.install files for multiarch. -- Fathi Boudra Wed, 28 Dec 2011 10:10:59 +0200 qtwebkit (2.2.0-5) unstable; urgency=low * Update symbol file with the latest changes from the build logs. * Mark a bunch of other internal WebCore namespace symbols as optional=private. * Mark some external symbols as optional=external. -- Modestas Vainius Mon, 16 Apr 2012 23:35:59 +0300 qtwebkit (2.2.0-4) unstable; urgency=low * Team upload. [ Pino Toscano ] * Add -Wl,--no-relax to the LDFLAGS on alpha. (Closes: #656056) * Update the symbols file for alpha, armhf and ppc64, and for all the other archs from their build logs. (Closes: #653905, #656056, #664897) * Backport (parts of) upstream r93631 and r113848 to fix building with GCC 4.7. (Closes: #667346) [ Felix Geyer ] * Add Fix_build_with_GLib_2.31_changeset_r97269.patch, cherry-picked from upstream. (Closes: #665679) * Bump debhelper compat level to v9. - Use DEB__MAINT variables instead of manipulating the flag variables directly. * Bump Standards-Version to 3.9.3, no changes needed. [ Modestas Vainius ] * Mark symbols having 'Private' in their name as optional=private. * Mark '^ _ZN7WebCore' symbols as optional=private. They are not part of public API. -- Modestas Vainius Sun, 15 Apr 2012 21:16:49 +0300 qtwebkit (2.2.0-3) unstable; urgency=low [ Fathi Boudra ] * Update the symbols file for ia64 and mipsel architectures. [ Pino Toscano ] * Add patch hurd.diff to temporarly workaround build failure on Hurd. * Update the symbols file for hurd-i386, sh4, and sparc64 architectures. -- Debian Qt/KDE Maintainers Wed, 28 Dec 2011 10:10:59 +0200 qtwebkit (2.2.0-2) unstable; urgency=low [ Pino Toscano ] * Improve the symbols file for more archs (based on their build logs): armel ia64 kfreebsd-amd64 kfreebsd-i386 mips powerpc s390 s390x sparc -- Debian Qt/KDE Maintainers Sun, 25 Dec 2011 21:46:36 +0100 qtwebkit (2.2.0-1) unstable; urgency=low * New upstream release: - provides support for s390/s390x. (Closes: #637004) * Update patches: - 0001_fix_symbols_visibility_for_webcore.diff: drop, stolen upstream. - 05_sparc_unaligned_access.diff: refresh - no_gc_sections.diff: refresh - 06_kfreebsd_strnstr.diff, 09_hurd.diff: drop, now strnstr() is properly enabled [ Pino Toscano ] * Add -gstabs to the C(XX)FLAGS also for s390x. (see #637004) * Enable the video support for all the OSes, not just on Linux. * Add patch glibc_mkspec.diff, to enable/fix compile options for platforms using our custom glibc-g++ mkspec. * Add a symbols file, based on the previous version (2.1.0~2011week13). [ Fathi Boudra ] * Update debian/control: - bump debhelper build dependency to 8.1.3~. - add pkg-config, libgstreamer-plugins-base0.10-dev and libgstreamer0.10-dev build dependencies. - drop libphonon-dev build and qt-mobility build dependencies. GStreamer will be used as the multimedia backend as recommended by upstream. (Closes: #634388) * Add debian/README.source: explain how to create a new upstream tarball. * Update debian/rules: - drop ENABLE_GEOLOCATION as qt-mobility build dependency is removed. - add WTF_USE_GSTREAMER to enable GStreamer as the multimedia backend. - pass --sourcedirectory=Source to dh as the upstream tarball format has changed. - add override_dh_auto_clean to remove Source/Makefile file and avoid dh_clean failure. * Add qwebview designer plugin and make libqtwebkit-dev depend on ${shlibs:Depends} as we are shipping the qwebview designer plugin. (Closes: #612974) * Add adjust_symbols_visibility_for_webcore.diff to fix WebCore symbols visibility. -- Debian Qt/KDE Maintainers Mon, 19 Sep 2011 16:32:18 +0300 qtwebkit (2.1.0~2011week13-2) unstable; urgency=low * Add defines_qt_webkit.diff to display correctly documentation in Qt Creator Help plugin. (Closes: #619443) * Bump Standards-Version to 3.9.2 (no changes needed). -- Fathi Boudra Sun, 19 Jun 2011 12:35:00 +0300 qtwebkit (2.1.0~2011week13-1) unstable; urgency=low * New upstream release. [ José Manuel Santamaría Lema ] * Add linux_amd64_no_overcommit.diff to avoid crashes on amd64 with less than 3 or 4GB of RAM. Thanks to Felix Geyer for his help with this issue. [ Fathi Boudra ] * Ship libqtwebkit-qmlwebkitplugin package. (Closes: #601650) * Drop webcore_qtplatformplugin_createfullscreenvideohandler_ftbfs.patch. -- Debian Qt/KDE Maintainers Wed, 06 Apr 2011 11:37:59 +0300 qtwebkit (2.1.0~2011week09-3) unstable; urgency=high * Rename 08_powerpc_s390_no_gc_sections.diff to no_gc_sections.diff and extend it to cover armel and mip* as well. Full list: powerpc, s390, arm*, mips*. * Really replace -g with -gstabs on s390, mips, mipsel and armel. Previously it used to grab -g from environment CXXFLAGS. Hopefully this will truly fix OOMs when linking. (Closes: #618325) * Urgency=high, transition stuff. -- Modestas Vainius Mon, 28 Mar 2011 03:36:12 +0300 qtwebkit (2.1.0~2011week09-2) unstable; urgency=high [ Pino Toscano ] * Build-depend on libphonon-dev on non-Linux architectures. (Closes: #617656) [ Modestas Vainius ] * Build with -gstabs on armel (Closes: #618325). Added to the stabs_format_debug_info.diff patch (former 07_s390_stabs_format_debugging_information.diff). * Urgency=high, transition stuff. -- Debian Qt/KDE Maintainers Thu, 24 Mar 2011 16:12:43 +0200 qtwebkit (2.1.0~2011week09-1) unstable; urgency=low * New upstream release - upload to Sid. * Add webcore_qtplatformplugin_createfullscreenvideohandler_ftbfs.patch to work around the build failure. * Switch to Qt MultimediaKit for the video support (instead of Phonon), build depends on QtMultimediaKit. * Enable geolocation support: build depends on QtLocation and define ENABLE_GEOLOCATION. -- Fathi Boudra Sun, 06 Mar 2011 10:05:46 +0200 qtwebkit (2.1.0~2011week03-1) experimental; urgency=low * New upstream release: switch to Qt WebKit 2.1 branch. [ Fathi Boudra ] * Update debian/control: - build depends on Qt 4.7.0 beta 2. * Update debian/rules: - pass DEFINES+=ENABLE_VIDEO to build with audio/video support. * Update libqtwebkit-dev.install file: add qwebkitplatformplugin.h. [ Modestas Vainius ] * Fix debian/control Vcs fields to point to the new location. [ Pino Toscano ] * Add patch 09_hurd.diff to fix compilation on Hurd. -- Fathi Boudra Sat, 29 Jan 2011 18:23:41 +0200 qtwebkit (2.0~week26-2) experimental; urgency=low * Fix FTBFS on GNU/kFreeBSD caused by missing strnstr() on glibc systems. -- Fathi Boudra Wed, 07 Jul 2010 09:51:03 +0300 qtwebkit (2.0~week26-1) experimental; urgency=low * Initial release (Closes: #576006) -- Fathi Boudra Fri, 02 Jul 2010 15:37:23 +0300 debian/compat0000664000000000000000000000000212312273072010365 0ustar 9