Timeline
Dec 15, 2011:
- 11:59 PM Changeset in webkit [103034] by
-
- 6 edits in trunk/Source
Fix 'make dist' in preparation for the GTK+ release.
Source/JavaScriptCore:
- GNUmakefile.list.am: Add missing header.
Source/WebCore:
- GNUmakefile.list.am: Add missing header.
Source/WebKit2:
- GNUmakefile.am: Add missing header.
- 11:55 PM Changeset in webkit [103033] by
-
- 2 edits in trunk/LayoutTests
Unreviewed expectations update.
- html5lib/webkit-resumer-expected.txt:
- 11:26 PM Changeset in webkit [103032] by
-
- 2 edits in trunk/LayoutTests
Unreviewed test_expectations.txt update.
- platform/chromium/test_expectations.txt:
- 11:18 PM Changeset in webkit [103031] by
-
- 4 edits in trunk/Source/WebCore
Don't create empty files on error.
https://bugs.webkit.org/show_bug.cgi?id=74373
Patch by Rafael Ávila de Espíndola <rafael.espindola@gmail.com> on 2011-12-15
Reviewed by Ryosuke Niwa.
- css/makeprop.pl:
- css/makevalues.pl:
- make-hash-tools.pl:
- 11:14 PM Changeset in webkit [103030] by
-
- 10 edits1 add in trunk/Source
PODIntervalTree takes 1.7MB memory on www.nytimes.com.
https://bugs.webkit.org/show_bug.cgi?id=73712
Patch by Yongjun Zhang <yongjun_zhang@apple.com> on 2011-12-15
Reviewed by Kenneth Russell.
Source/WebCore:
For a RenderBlock which has floating objects inside, we will create a PODIntervalTree and a PODArena with
at least one 16KB chunk. A page could have a large number of such RenderBlocks and they could take huge
amount of memory. To fix that, we can create a shared PODArena in the root RenderView. Instead of having
their own PODArena, each RenderBlock with floating objects could share this PODArena to reduce memory consumption.
The shared PODArena could grow unboundedly if we keep removing and adding floating objects. We can fix that
by reusing the freed memory in each chunk. However, a PODArena could allocate objects of different sizes and
it would be complex to keep track of the size for each allocation in PODArena. To address that, this patch
added class PODFreeListArena<T> which only allocates objects of type T (hence the same size). We can then use a
free list to track freed nodes inside the chunk and reuse the free nodes in future allocations.
Manually tested on nytimes.com and the heap consumption of PODIntervalTree reduced from 1.7MB to 16KB. Performance
doesn't regress on test PerformanceTests/Layout/floats.html.
- WebCore.xcodeproj/project.pbxproj: add new header file PODFreeListArena.h.
- platform/PODArena.h:
(WebCore::PODArena::~PODArena): change dtor to virtual.
(WebCore::PODArena::Chunk::~Chunk): ditto.
- platform/PODFreeListArena.h: Added.
(WebCore::PODFreeListArena::create):
(WebCore::PODFreeListArena::allocateObject): allocate an object.
(WebCore::PODFreeListArena::freeObject): free an object, find the right chunk and update its free list.
(WebCore::PODFreeListArena::allocate): allocate memory from the free list or current chunk.
(WebCore::PODFreeListArena::FreeListChunk::FreeListChunk): add m_freeList to track freed cells.
(WebCore::PODFreeListArena::FreeListChunk::allocate): reuse a free cell if there is one.
(WebCore::PODFreeListArena::FreeListChunk::free): make the memory taken by this object is free, and link it to m_freeList.
(WebCore::PODFreeListArena::FreeListChunk::contains): check if a pointer is inside this chunk.
(WebCore::PODFreeListArena::FreeListChunk::hasFreeList): check if this chunk has free cells.
- platform/PODRedBlackTree.h:
(WebCore::PODRedBlackTree::PODRedBlackTree): take PODFreeListArena instead of PODArena, since nodes of a particular PODRedBlackTree
is always of the same size.
(WebCore::PODRedBlackTree::clear): mark all nodes before clearing the tree.
(WebCore::PODRedBlackTree::initIfNeeded): add initIfNeeded to take an external PODFreeListArena.
(WebCore::PODRedBlackTree::add):
(WebCore::PODRedBlackTree::deleteNode): mark the node free in arena after it is removed from the tree.
(WebCore::PODRedBlackTree::markFree): mark all node free in the tree.
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::insertFloatingObject):
(WebCore::RenderBlock::addOverhangingFloats):
(WebCore::RenderBlock::addIntrudingFloats):
(WebCore::RenderBlock::FloatingObjects::computePlacedFloatsTree): passing the shared PODFreeListArena to m_placedFloatsTree.
- rendering/RenderBlock.h:
(WebCore::RenderBlock::FloatingObjects::FloatingObjects):
- rendering/RenderView.cpp:
(WebCore::RenderView::intervalArena): create the shared PODFreeListArena lazily.
- rendering/RenderView.h:
Source/WebKit/chromium:
Change the test code in chromium port since PODRedBlackTree now takes PODFreeListArena<T>
in its constructor.
- tests/PODRedBlackTreeTest.cpp:
(WebCore::TEST):
- 11:02 PM Changeset in webkit [103029] by
-
- 26 edits in trunk/LayoutTests
Unreviewed; rebaseline Chromium speech input image tests.
- 10:46 PM Changeset in webkit [103028] by
-
- 2 edits in trunk/Source/JavaScriptCore
<rdar://problem/10552550> JavaScriptCore uses obsolete 'cpy' mnemonic in ARM assembly
Reviewed by Gavin Barraclough.
Original patch by Jim Grosbach.
- jit/JITStubs.cpp:
(JSC::ctiTrampoline):
(JSC::ctiVMThrowTrampoline):
Replace uses of the 'cpy' mnemonic with 'mov'.
- 10:40 PM Changeset in webkit [103027] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed, rollout r102825 because it didn't improve performance.
https://bugs.webkit.org/show_bug.cgi?id=74622
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::styleForElement):
(WebCore::CSSStyleSelector::pseudoStyleForElement):
- 10:02 PM Changeset in webkit [103026] by
-
- 4 edits in trunk/Tools
NRWT should use free + inactive memory for default_child_processes on OS X (and never return < 1 process)
https://bugs.webkit.org/show_bug.cgi?id=74650
Reviewed by Adam Barth.
- Scripts/webkitpy/common/system/platforminfo.py:
(PlatformInfo._compute_bytes_from_vm_stat_output):
- Scripts/webkitpy/layout_tests/port/base.py:
(Port.default_child_processes):
- Scripts/webkitpy/layout_tests/port/base_unittest.py:
(PortTest.test_default_child_processes):
- 10:00 PM Changeset in webkit [103025] by
-
- 2 edits in trunk/Source/WebKit/chromium
IndexedDB: Clean up WebIDBObjectStore createIndex temp code
https://bugs.webkit.org/show_bug.cgi?id=74205
Patch by Joshua Bell <jsbell@chromium.org> on 2011-12-15
Reviewed by Darin Fisher.
Remove a method and an implementation that only needed for
older Chromium revisions.
- public/WebIDBObjectStore.h:
(WebKit::WebIDBObjectStore::createIndex):
- 9:56 PM Changeset in webkit [103024] by
-
- 2 edits in trunk/Tools
bencher script should support remote benchmarking on platforms that don't have ruby
https://bugs.webkit.org/show_bug.cgi?id=74659
Rubber-stamped by Sam Weinig.
Added the ability to have bencher generate a benchmarking playload that consists of
copies of all of the benchmarks, optionally copies of all of the frameworks and
binaries to run all of the VMs, and a sh script that runs the benchmarks in random
order, which then spits out a raw results file that bencher can parse.
In normal operating mode, you never see this, as it just generates the payload and
script internally, runs it, parses the results, and spits them out.
The --remote mode has been changed to use this style, so any remote host that has
sshd, passwordless login support, a ~/.bencher file that points to a "tempPath", and
a sh-compatible shell can be used for remote benchmarking.
The feature to include VMs in the benchmarking payload is by default only activated
when using --remote, but it can also be activated when doing local benchmarking; the
benefit is that you remove any pathname-related performance pathologies. All VMs
become equal because they are all located in
/path/to/bencher/directory/temp/benchdata/vmN where N is the configuration number
(usually 0 or 1).
Also fixed bugs in the DumpRenderTree support. It's now possible to run all benchmarks
through DumpRenderTree. This is only a bit slower than running in jsc.
- Scripts/bencher:
- 9:32 PM Changeset in webkit [103023] by
-
- 3 edits in trunk/Source/JavaScriptCore
Value profiling should distinguished between NaN and non-NaN doubles
https://bugs.webkit.org/show_bug.cgi?id=74682
Reviewed by Gavin Barraclough.
Added PredictDoubleReal and PredictDoubleNaN. PredictDouble is now the union
of the two.
- bytecode/PredictedType.cpp:
(JSC::predictionToString):
(JSC::predictionFromValue):
- bytecode/PredictedType.h:
(JSC::isDoubleRealPrediction):
(JSC::isDoublePrediction):
- 9:22 PM Changeset in webkit [103022] by
-
- 1 edit4 adds in trunk/Source/WebKit
[BlackBerry] Upstream BlackBerry WebCoreSupport drag client and context menu client
https://bugs.webkit.org/show_bug.cgi?id=74643
Patch by Jacky Jiang <zhajiang@rim.com> on 2011-12-15
Reviewed by Rob Buis.
Initial upstream, no new tests.
- blackberry/WebCoreSupport/ContextMenuClientBlackBerry.cpp: Added.
- blackberry/WebCoreSupport/ContextMenuClientBlackBerry.h: Added.
- blackberry/WebCoreSupport/DragClientBlackBerry.cpp: Added.
- blackberry/WebCoreSupport/DragClientBlackBerry.h: Added.
- 9:21 PM Changeset in webkit [103021] by
-
- 2 edits in trunk/Source/WebKit/chromium
Chromium Windows (Tests) is failing to build
https://bugs.webkit.org/show_bug.cgi?id=74320
Reviewed by Kenneth Russell.
Roll chromium deps to r114686 to pull in a change to how generated
headers include files from third_party/WebKit. This should make the
file path shorter, reducing the chance of hitting the 260 char path
limit on Windows.
- DEPS: roll to r114686
- 9:09 PM Changeset in webkit [103020] by
-
- 7 edits in trunk/Source/WebCore
sizeof(RenderObject) is 32 instead of 24 on Windows
https://bugs.webkit.org/show_bug.cgi?id=74646
Reviewed by Darin Adler.
Make all bitfields in RenderObject to unsigned and wrap them around by RenderObjectBitfields.
Also add a compilation time assertion to make sure we won't grow RenderObject's size unintentionally.
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::layoutBlock):
(WebCore::RenderBlock::layoutBlockChild):
(WebCore::RenderBlock::markAllDescendantsWithFloatsForLayout):
(WebCore::RenderBlock::layoutColumns):
- rendering/RenderBlock.h:
(WebCore::RenderBlock::FloatWithRect::FloatWithRect):
- rendering/RenderObject.cpp:
(WebCore::SameSizeAsRenderObject::~SameSizeAsRenderObject):
(WebCore::RenderObject::RenderObject):
(WebCore::RenderObject::markContainingBlocksForLayout):
(WebCore::RenderObject::setPreferredLogicalWidthsDirty):
(WebCore::RenderObject::invalidateContainerPreferredLogicalWidths):
(WebCore::RenderObject::styleWillChange):
(WebCore::RenderObject::styleDidChange):
(WebCore::RenderObject::willBeDestroyed):
(WebCore::RenderObject::updateDragState):
- rendering/RenderObject.h:
(WebCore::RenderObject::hasCounterNodeMap):
(WebCore::RenderObject::setHasCounterNodeMap):
(WebCore::RenderObject::childrenInline):
(WebCore::RenderObject::setChildrenInline):
(WebCore::RenderObject::hasColumns):
(WebCore::RenderObject::setHasColumns):
(WebCore::RenderObject::inRenderFlowThread):
(WebCore::RenderObject::setInRenderFlowThread):
(WebCore::RenderObject::isAnonymous):
(WebCore::RenderObject::setIsAnonymous):
(WebCore::RenderObject::isAnonymousBlock):
(WebCore::RenderObject::isFloating):
(WebCore::RenderObject::isPositioned):
(WebCore::RenderObject::isRelPositioned):
(WebCore::RenderObject::isText):
(WebCore::RenderObject::isBox):
(WebCore::RenderObject::isInline):
(WebCore::RenderObject::isDragging):
(WebCore::RenderObject::isReplaced):
(WebCore::RenderObject::isHorizontalWritingMode):
(WebCore::RenderObject::hasLayer):
(WebCore::RenderObject::hasBoxDecorations):
(WebCore::RenderObject::needsLayout):
(WebCore::RenderObject::selfNeedsLayout):
(WebCore::RenderObject::needsPositionedMovementLayout):
(WebCore::RenderObject::needsPositionedMovementLayoutOnly):
(WebCore::RenderObject::posChildNeedsLayout):
(WebCore::RenderObject::needsSimplifiedNormalFlowLayout):
(WebCore::RenderObject::normalChildNeedsLayout):
(WebCore::RenderObject::preferredLogicalWidthsDirty):
(WebCore::RenderObject::hasOverflowClip):
(WebCore::RenderObject::hasTransform):
(WebCore::RenderObject::node):
(WebCore::RenderObject::setPositioned):
(WebCore::RenderObject::setRelPositioned):
(WebCore::RenderObject::setFloating):
(WebCore::RenderObject::setInline):
(WebCore::RenderObject::setHasBoxDecorations):
(WebCore::RenderObject::setIsText):
(WebCore::RenderObject::setIsBox):
(WebCore::RenderObject::setReplaced):
(WebCore::RenderObject::setHorizontalWritingMode):
(WebCore::RenderObject::setHasOverflowClip):
(WebCore::RenderObject::setHasLayer):
(WebCore::RenderObject::setHasTransform):
(WebCore::RenderObject::setHasReflection):
(WebCore::RenderObject::hasReflection):
(WebCore::RenderObject::setHasMarkupTruncation):
(WebCore::RenderObject::hasMarkupTruncation):
(WebCore::RenderObject::selectionState):
(WebCore::RenderObject::setSelectionState):
(WebCore::RenderObject::hasSelectedChildren):
(WebCore::RenderObject::isMarginBeforeQuirk):
(WebCore::RenderObject::isMarginAfterQuirk):
(WebCore::RenderObject::setMarginBeforeQuirk):
(WebCore::RenderObject::setMarginAfterQuirk):
(WebCore::RenderObject::everHadLayout):
(WebCore::RenderObject::RenderObjectBitfields::RenderObjectBitfields):
(WebCore::RenderObject::RenderObjectBitfields::selectionState):
(WebCore::RenderObject::RenderObjectBitfields::setSelectionState):
(WebCore::RenderObject::setNeedsPositionedMovementLayout):
(WebCore::RenderObject::setNormalChildNeedsLayout):
(WebCore::RenderObject::setPosChildNeedsLayout):
(WebCore::RenderObject::setNeedsSimplifiedNormalFlowLayout):
(WebCore::RenderObject::setPaintBackground):
(WebCore::RenderObject::setIsDragging):
(WebCore::RenderObject::setEverHadLayout):
(WebCore::RenderObject::setNeedsLayout):
(WebCore::RenderObject::setChildNeedsLayout):
- rendering/RenderObjectChildList.cpp:
(WebCore::RenderObjectChildList::removeChildNode):
- rendering/svg/RenderSVGContainer.cpp:
(WebCore::RenderSVGContainer::layout):
- 8:41 PM Changeset in webkit [103019] by
-
- 1 edit1 add in trunk/Source/WebCore
[BlackBerry] Upstream BlackBerry porting of pluginView
https://bugs.webkit.org/show_bug.cgi?id=73397
Patch by Wei Charles <charles.wei@torchmobile.com.cn> on 2011-12-15
Reviewed by Daniel Bates.
No new tests for now.
- plugins/blackberry/PluginViewBlackBerry.cpp: Added.
- 8:23 PM Changeset in webkit [103018] by
-
- 5 edits in trunk
IndexedDB: Can't pass DOMStringList to IDBDatabase.transaction()
https://bugs.webkit.org/show_bug.cgi?id=74452
Patch by Joshua Bell <jsbell@chromium.org> on 2011-12-15
Reviewed by Adam Barth.
Source/WebCore:
V8 code generator generated checks for DOMStringList arguments, then
deferred to a function that only handled array inputs. This previously
worked for IndexedDB because it would fall into a now-removed default
handler.
Modified storage/indexeddb/transaction-basics.html to test this.
- bindings/v8/V8Binding.cpp:
(WebCore::v8ValueToWebCoreDOMStringList):
LayoutTests:
- storage/indexeddb/transaction-basics-expected.txt:
- storage/indexeddb/transaction-basics.html:
- 8:19 PM Changeset in webkit [103017] by
-
- 2 edits in trunk/Source/WebCore
Make Element::setAttributeInternal inline in an attempt to avoid function call overhead
https://bugs.webkit.org/show_bug.cgi?id=74638
Reviewed by Andreas Kling.
In r102695, I factored common code in setAttribute into
Element::setAttributeInternal. This may have caused a perf regression
due to the extra function call, which inlining should eliminate.
Running Dromaeo locally suggests that this will improve performance
by ~9% on the "dom-attr element.property = value" test (which assigns
a value to an element's id).
- dom/Element.cpp:
(WebCore::Element::setAttributeInternal):
- 8:03 PM Changeset in webkit [103016] by
-
- 1 edit1 add in trunk/Source/WebCore
Upstream FileSystemBlackBerry.cpp into WebCore/platform/blackberry
https://bugs.webkit.org/show_bug.cgi?id=74491
Patch by Mary Wu <mary.wu@torchmobile.com.cn> on 2011-12-15
Reviewed by Rob Buis.
We are using POSIX porting of FileSystem, so here only implement other
necessary functions.
Initial upstream, no new tests.
- platform/blackberry/FileSystemBlackBerry.cpp: Added.
(WebCore::homeDirectoryPath):
(WebCore::fileSystemRepresentation):
(WebCore::unloadModule):
(WebCore::openTemporaryFile):
- 7:43 PM Changeset in webkit [103015] by
-
- 3 edits in trunk/Source/WebCore
[chromium] Clean up unnecessary leaf functions in GraphicsLayerChromium
https://bugs.webkit.org/show_bug.cgi?id=74140
Reviewed by James Robinson.
Tested by existing compositor layout tests.
This is a follow-on cleanup to r102196, which made some of these
functions less useful than they had been in the past.
- platform/graphics/chromium/GraphicsLayerChromium.cpp:
(WebCore::GraphicsLayerChromium::setContentsOpaque):
(WebCore::GraphicsLayerChromium::setBackfaceVisibility):
(WebCore::GraphicsLayerChromium::updateLayerPreserves3D):
- platform/graphics/chromium/GraphicsLayerChromium.h:
- 7:41 PM Changeset in webkit [103014] by
-
- 3 edits in trunk/Tools
webkitpy: clean up TestPort to (mostly) not create a new filesystem
https://bugs.webkit.org/show_bug.cgi?id=74556
This change modifies the TestPort to be ready to add tests to an
existing filesystem instead of creating a new filesystem; we
leave unit_test_filesystem() in for now for compatibility.
- Scripts/webkitpy/common/host_mock.py:
(MockHost.init):
- call add_unit_tests_to_mock_filesystem by default to make the MockHost more generally useful for layout_test unit tests.
- Scripts/webkitpy/layout_tests/port/test.py:
(TestInstance.init):
(add_unit_tests_to_mock_filesystem):
(add_file):
(unit_test_filesystem):
(TestPort.init):
(TestPort._set_default_overriding_none):
- 7:05 PM Changeset in webkit [103013] by
-
- 9 edits in trunk
Unreviewed, rolling out r103000.
http://trac.webkit.org/changeset/103000
https://bugs.webkit.org/show_bug.cgi?id=74658
Does not handle text/plain documents correctly.
Source/WebCore:
- html/parser/HTMLTokenizer.cpp:
- html/parser/HTMLTokenizer.h:
- html/parser/HTMLTreeBuilder.cpp:
- html/parser/HTMLTreeBuilder.h:
- xml/parser/MarkupTokenizerBase.h:
LayoutTests:
- html5lib/runner-expected.txt:
- platform/chromium/html5lib/runner-expected.txt:
- 7:02 PM Changeset in webkit [103012] by
-
- 5 edits in trunk/Tools
webkitpy: cleanup prior to systemhostifying the layout_test/port* classes
https://bugs.webkit.org/show_bug.cgi?id=74551
This is some minor cleanup prior to making all of the host/port
changes described in bug 74138.
- Scripts/webkitpy/common/host_mock.py:
(MockHost.init):
- make sure the scm object is initialized with the same mock executive and filesystem objects.
- Scripts/webkitpy/common/system/filesystem_mock.py:
(MockFileSystem.clear_written_files):
- add a routine that will be useful in testing.
(MockFileSystem.maybe_make_directory):
(MockFileSystem.write_binary_file):
- fix bugs to make sure directories are created properly.
- Scripts/webkitpy/layout_tests/controllers/manager_worker_broker.py:
(_Process.run):
- add clarifying comments.
- Scripts/webkitpy/layout_tests/port/mock_drt.py:
(MockDRTPort.init):
(MockDRT.init):
- add clarifying comments.
- 6:32 PM Changeset in webkit [103011] by
-
- 13 edits in trunk
[chromium] Set the CCLayerTreeHost pointer on LayerChromium instances eagerly
https://bugs.webkit.org/show_bug.cgi?id=74477
Reviewed by Kenneth Russell.
Source/WebCore:
This enforces that the m_layerTreeHost pointer on LayerChromium instances is always up to date, instead of
lazily setting it in the paintContents loop. There are two invariants:
1.) If a LayerChromium is the root layer of a CCLayerTreeHost, or is reachable via the children, mask, or
replica pointers from the root layer of a CCLayerTreeHost, then that LayerChromium's m_layerTreeHost pointer
refers to that CCLayerTreeHost
2.) If a LayerChromium is not a root layer or reachable from a root layer of any CCLayerTreeHost, its
CCLayerTreeHost pointer is nil.
Covered by several new layout tests in LayerChromiumTest
- platform/graphics/chromium/LayerChromium.cpp:
(WebCore::LayerChromium::setLayerTreeHost):
(WebCore::LayerChromium::setParent):
(WebCore::LayerChromium::setMaskLayer):
(WebCore::LayerChromium::setReplicaLayer):
- platform/graphics/chromium/LayerChromium.h:
- platform/graphics/chromium/TiledLayerChromium.cpp:
(WebCore::TiledLayerChromium::createTile):
- platform/graphics/chromium/cc/CCLayerTreeHost.cpp:
(WebCore::CCLayerTreeHost::setRootLayer):
(WebCore::CCLayerTreeHost::paintMaskAndReplicaForRenderSurface):
(WebCore::CCLayerTreeHost::paintLayerContents):
- platform/graphics/chromium/cc/CCLayerTreeHost.h:
Source/WebKit/chromium:
Add some new tests for LayerChromium::m_layerTreeHost behavior.
- tests/CCLayerTreeHostTest.cpp:
(::MockLayerTreeHost::create):
(::MockLayerTreeHost::MockLayerTreeHost):
(::CCLayerTreeHostTestShortlived1::beginTest):
(::CCLayerTreeHostTestShortlived2::beginTest):
(::CCLayerTreeHostTestShortlived3::beginTest):
- tests/LayerChromiumTest.cpp:
LayoutTests:
- platform/chromium/test_expectations.txt:
- 6:32 PM Changeset in webkit [103010] by
-
- 3 edits in trunk/Source/WebKit2
Add support for accelerated compositing to the tiled Core Animation drawing area
https://bugs.webkit.org/show_bug.cgi?id=74675
Reviewed by Andreas Kling.
Add a layer flush scheduler and get rid of the content layer since WebCore will manage that for us.
- WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.h:
- WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:
(WebKit::TiledCoreAnimationDrawingArea::TiledCoreAnimationDrawingArea):
(WebKit::TiledCoreAnimationDrawingArea::~TiledCoreAnimationDrawingArea):
(WebKit::TiledCoreAnimationDrawingArea::setNeedsDisplay):
(WebKit::TiledCoreAnimationDrawingArea::scroll):
(WebKit::TiledCoreAnimationDrawingArea::setRootCompositingLayer):
(WebKit::TiledCoreAnimationDrawingArea::scheduleCompositingLayerSync):
(WebKit::TiledCoreAnimationDrawingArea::flushLayers):
(WebKit::TiledCoreAnimationDrawingArea::updateGeometry):
- 6:15 PM Changeset in webkit [103009] by
-
- 13 edits in trunk/Source
Unreviewed, rolling out r102652 and r102717.
http://trac.webkit.org/changeset/102652
http://trac.webkit.org/changeset/102717
https://bugs.webkit.org/show_bug.cgi?id=74674
Broke too many webs. (Requested by kling on #webkit).
Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-12-15
Source/WebCore:
- WebCore.exp.in:
Source/WebKit2:
- UIProcess/API/mac/WKView.mm:
(-[WKView _updateWindowAndViewFrames]):
- UIProcess/WebPageProxy.h:
- UIProcess/mac/WebPageProxyMac.mm:
(WebKit::WebPageProxy::windowAndViewFramesChanged):
- WebProcess/Plugins/PluginView.cpp:
(WebKit::PluginView::windowAndViewFramesChanged):
- WebProcess/Plugins/PluginView.h:
- WebProcess/WebCoreSupport/WebChromeClient.cpp:
(WebKit::WebChromeClient::windowRect):
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::windowAndViewFramesChanged):
- WebProcess/WebPage/WebPage.h:
(WebKit::WebPage::windowFrameInScreenCoordinates):
(WebKit::WebPage::viewFrameInWindowCoordinates):
(WebKit::WebPage::accessibilityPosition):
- WebProcess/WebPage/WebPage.messages.in:
- WebProcess/WebPage/mac/WKAccessibilityWebPageObject.mm:
(-[WKAccessibilityWebPageObject accessibilityAttributeValue:]):
- 6:00 PM Changeset in webkit [103008] by
-
- 4 edits in trunk
Source/JavaScriptCore: Regression (r102866): Navigating away from or closing a page with a plugin crashes
https://bugs.webkit.org/show_bug.cgi?id=74655
<rdar://problem/10590024>
Reviewed by Sam Weinig.
Rewrite HasRefAndDeref to work if ref and deref are implemented in base classes,
using a modified version of the technique described here:
http://groups.google.com/group/comp.lang.c++.moderated/msg/e5fbc9305539f699
- wtf/Functional.h:
Tools: Regression (r102866): Navigating away from or closing a page with a plugin crashes
https://bugs.webkit.org/show_bug.cgi?id=74655
Reviewed by Sam Weinig.
Add a bunch of tests.
- TestWebKitAPI/Tests/WTF/Functional.cpp:
- 5:50 PM Changeset in webkit [103007] by
-
- 7 edits in trunk/Source/WebCore
Lazily create the scrolling coordinator and add a setting for enabling it
https://bugs.webkit.org/show_bug.cgi?id=74667
Reviewed by Darin Adler.
- WebCore.xcodeproj/project.pbxproj:
Make ScrollingCoordinator.h a private header so it can be used in WebKit.
- page/Page.cpp:
(WebCore::Page::Page):
Don't create the scrolling coordinator.
(WebCore::Page::~Page):
Check for a null scrolling coordinator.
(WebCore::Page::scrollingCoordinator):
Create the scrolling coordinator lazily.
- page/Settings.cpp:
(WebCore::Settings::Settings):
- page/Settings.h:
(WebCore::Settings::setScrollingCoordinatorEnabled):
(WebCore::Settings::scrollingCoordinatorEnabled):
Add a setting for enabling the scrolling coordinator.
- rendering/RenderLayerBacking.cpp:
(WebCore::RenderLayerBacking::RenderLayerBacking):
Use a tile cache layer for the main frame when the scrolling coordinator is neabled.
- 5:33 PM Changeset in webkit [103006] by
-
- 3 edits in trunk/Source/WebCore
Unreviewed. Fix build break when data-transfer-items is enabled.
- platform/efl/ClipboardEfl.cpp:
(WebCore::ClipboardEfl::items):
- platform/efl/ClipboardEfl.h:
- 5:19 PM Changeset in webkit [103005] by
-
- 5 edits in trunk
<ruby><div><p><rp> parses incorrectly
https://bugs.webkit.org/show_bug.cgi?id=74668
Reviewed by Darin Adler.
Source/WebCore:
This patch updates our implementation to match a change to the HTML5
specification regarding how <ruby> elements parse. Previously, <rp>
and similar tags used to pop the stack up to the <ruby> element. Now
the popping does not occur.
Tests: html5lib/runner.html
- html/parser/HTMLTreeBuilder.cpp:
LayoutTests:
Update test results to show progression.
- html5lib/runner-expected.txt:
- platform/chromium/html5lib/runner-expected.txt:
- 5:17 PM Changeset in webkit [103004] by
-
- 2 edits in trunk/Source/WebCore
[Chromium] Avoid strdup() for extra argument when tracing is disabled.
https://bugs.webkit.org/show_bug.cgi?id=74637
Patch by Daniel Sievers <sievers@chromium.org> on 2011-12-15
Reviewed by James Robinson.
- platform/chromium/TraceEvent.h:
(WebCore::internal::ScopeTracer::ScopeTracer):
- 5:12 PM Changeset in webkit [103003] by
-
- 3 edits in trunk/Source/JavaScriptCore
Warnings fixes in Interpreter.cpp and PrivateExecute.cpp
https://bugs.webkit.org/show_bug.cgi?id=74624
Patch by Andy Wingo <wingo@igalia.com> on 2011-12-15
Reviewed by Darin Adler.
- interpreter/Interpreter.cpp:
(JSC::Interpreter::privateExecute): Fix variables unused in
release mode.
- wtf/ParallelJobsGeneric.cpp:
(WTF::ParallelEnvironment::ParallelEnvironment): Fix
signed/unsigned comparison warning, with a cast.
- 5:08 PM Changeset in webkit [103002] by
-
- 7 edits in trunk/Tools
https://bugs.webkit.org/show_bug.cgi?id=74469
Escape paths to svn commands so our tools can handle filenames with @ symbols.
Reviewed by Adam Roben.
- Scripts/VCSUtils.pm:
(scmMoveOrRenameFile):
(scmAddExecutableBit):
(scmRemoveExecutableBit):
(determineSVNRoot):
(svnRevisionForDirectory):
(pathRelativeToSVNRepositoryRootForPath):
(svnStatus):
(escapeSubversionPath):
- Scripts/parse-malloc-history:
(main):
- Scripts/prepare-ChangeLog:
(diffCommand):
(statusCommand):
(findOriginalFileFromSvn):
(determinePropertyChanges):
- Scripts/resolve-ChangeLogs:
(conflictFiles):
(resolveConflict):
(showStatus):
- Scripts/svn-apply:
(patch):
(scmCopy):
(scmAdd):
(scmRemove):
- Scripts/svn-create-patch:
(findBaseUrl):
(findMimeType):
(findSourceFileAndRevision):
(generateDiff):
(generateFileList):
(manufacturePatchForAdditionWithHistory):
- Scripts/svn-unapply:
(patch):
(revertDirectories):
- 4:59 PM Changeset in webkit [103001] by
-
- 17 edits1 copy1 add in trunk/Source/WebCore
[MutationObservers] Add a document-level flag that can trivially be checked to avoid doing unnessary work if mutation observers absent
https://bugs.webkit.org/show_bug.cgi?id=74641
Patch by Rafael Weinstein <rafaelw@chromium.org> on 2011-12-15
Reviewed by Ojan Vafai.
This patch adds a byte of flags to Document, of which three bits are used to signal if any
node owned by the document has a Mutation Observer of the given type. This is used to
reduce the cost of discovering there are none to a single (inlined) method call and bit-check.
Also, a similar byte of flags which was used to optimize a particular case when mutation observers
are present has been removed, with the reasoning that we should first focus on minimizing impact on
the null-case before optimizing particular in-use cases.
Also, MutationObserverInterestGroup is broken out into its own file (which probably should have happened
earlier, but now avoids a circular header dependency).
No tests needed. This patch is just a refactor.
- CMakeLists.txt:
- GNUmakefile.list.am:
- Target.pri:
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- css/CSSMutableStyleDeclaration.cpp:
- dom/CharacterData.cpp:
- dom/ChildListMutationScope.cpp:
- dom/Document.cpp:
(WebCore::Document::Document):
- dom/Document.h:
(WebCore::Document::hasMutationObserversOfType):
(WebCore::Document::hasMutationObservers):
(WebCore::Document::addMutationObserverTypes):
- dom/Element.cpp:
- dom/MutationObserverInterestGroup.cpp: Added.
(WebCore::MutationObserverInterestGroup::createIfNeeded):
(WebCore::MutationObserverInterestGroup::MutationObserverInterestGroup):
(WebCore::MutationObserverInterestGroup::isOldValueRequested):
(WebCore::MutationObserverInterestGroup::enqueueMutationRecord):
- dom/MutationObserverInterestGroup.h: Copied from Source/WebCore/dom/WebKitMutationObserver.h.
(WebCore::MutationObserverInterestGroup::createForChildListMutation):
(WebCore::MutationObserverInterestGroup::createForCharacterDataMutation):
(WebCore::MutationObserverInterestGroup::createForAttributesMutation):
(WebCore::MutationObserverInterestGroup::hasOldValue):
- dom/Node.cpp:
(WebCore::Node::didMoveToNewOwnerDocument):
(WebCore::Node::getRegisteredMutationObserversOfType):
(WebCore::Node::notifyMutationObserversNodeWillDetach):
- dom/Node.h:
- dom/WebKitMutationObserver.cpp:
(WebCore::WebKitMutationObserver::observe):
- dom/WebKitMutationObserver.h:
- 4:51 PM Changeset in webkit [103000] by
-
- 9 edits in trunk
<!DOCTYPE html><pre>

A</pre> doesn't parse correctly
https://bugs.webkit.org/show_bug.cgi?id=74658
Reviewed by Darin Adler.
Source/WebCore:
Previously, we handled skipping newlines after <pre> in the tokenizer,
which isn't how the spec handles them. Instead, the spec skips them in
the tree builder. This isn't usually observable, except in the case of
an HTML entity. In that case, the tokenzier sees '&' (because the
entity hasn't been decoded yet), but the tree builder sees '\n' (the
decoded entity). This patch fixes the bug by more closely aligning our
implementation with the spec.
Test: html5lib/runner.html
- html/parser/HTMLTokenizer.cpp:
(WebCore::HTMLTokenizer::reset):
(WebCore::HTMLTokenizer::nextToken):
- html/parser/HTMLTokenizer.h:
- html/parser/HTMLTreeBuilder.cpp:
(WebCore::HTMLTreeBuilder::ExternalCharacterTokenBuffer::skipAtMostOneLeadingNewline):
(WebCore::HTMLTreeBuilder::HTMLTreeBuilder):
(WebCore::HTMLTreeBuilder::processStartTagForInBody):
(WebCore::HTMLTreeBuilder::processCharacterBuffer):
- html/parser/HTMLTreeBuilder.h:
- xml/parser/MarkupTokenizerBase.h:
LayoutTests:
Shows test progression.
- html5lib/runner-expected.txt:
- 4:44 PM Changeset in webkit [102999] by
-
- 9 edits in trunk/Source/WebCore
Unreviewed, rolling out r102989.
http://trac.webkit.org/changeset/102989
https://bugs.webkit.org/show_bug.cgi?id=74580
Caused SHOULD NOT BE REACHED assertions in debug builds.
- css/CSSComputedStyleDeclaration.cpp:
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
- css/CSSPrimitiveValueMappings.h:
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
(WebCore::CSSPrimitiveValue::operator EBoxAlignment):
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
- rendering/RenderDeprecatedFlexibleBox.cpp:
(WebCore::RenderDeprecatedFlexibleBox::layoutHorizontalBox):
(WebCore::RenderDeprecatedFlexibleBox::layoutVerticalBox):
- rendering/RenderFullScreen.cpp:
(createFullScreenStyle):
- rendering/style/RenderStyle.h:
(WebCore::InheritedFlags::boxPack):
(WebCore::InheritedFlags::setBoxAlign):
(WebCore::InheritedFlags::setBoxPack):
(WebCore::InheritedFlags::initialBoxPack):
- rendering/style/RenderStyleConstants.h:
- rendering/style/StyleDeprecatedFlexibleBoxData.h:
- 4:41 PM Changeset in webkit [102998] by
-
- 3 edits in trunk/Source/WebKit
[BlackBerry] Regression: lots of checkerboarding
https://bugs.webkit.org/show_bug.cgi?id=74611
Patch by Jacky Jiang <zhajiang@rim.com> on 2011-12-15
Reviewed by Daniel Bates.
Fix a regression caused by r102843 which introduced a lot of unnecessary
checkerboarding. R102843 changed behavior by removing a check for blit
based on whether the render actually took place and whether the
backingstore was in the midst of suspended updates.
The initial anthor is Adam Treat <atreat@rim.com>.
- blackberry/Api/BackingStore.cpp:
(BlackBerry::WebKit::BackingStorePrivate::repaint):
(BlackBerry::WebKit::BackingStorePrivate::slowScroll):
(BlackBerry::WebKit::BackingStorePrivate::renderVisibleContents):
(BlackBerry::WebKit::BackingStorePrivate::renderBackingStore):
- blackberry/Api/BackingStore_p.h:
(BlackBerry::WebKit::BackingStorePrivate::isSuspended):
- 4:37 PM Changeset in webkit [102997] by
-
- 2 edits1 add4 deletes in trunk/LayoutTests
Create reftest for render-region-renderer
https://bugs.webkit.org/show_bug.cgi?id=74518
Patch by Larry McLister <lmcliste@adobe.com> on 2011-12-15
Reviewed by Tony Chang.
- fast/regions/render-region-renderer-expected.html: Added.
- platform/chromium/test_expectations.txt:
- platform/efl/fast/regions/render-region-renderer-expected.png: Removed.
- platform/efl/fast/regions/render-region-renderer-expected.txt: Removed.
- platform/mac/fast/regions/render-region-renderer-expected.png: Removed.
- platform/mac/fast/regions/render-region-renderer-expected.txt: Removed.
- 4:32 PM Changeset in webkit [102996] by
-
- 2 edits in trunk/Tools
[qt][wk2] MiniBrowser: Add pressed state for viewport info button.
https://bugs.webkit.org/show_bug.cgi?id=74617
Patch by Michael Bruning <michael.bruning@nokia.com> on 2011-12-15
Reviewed by Kenneth Rohde Christiansen.
- MiniBrowser/qt/qml/BrowserWindow.qml: Added state dependent coloring
for viewport info button, adjusted height and added rounded corners.
- 4:25 PM Changeset in webkit [102995] by
-
- 2 edits10 adds in trunk/LayoutTests
Unreviewed Chromium test expectations update.
Rebaseline fast/text/unicode-variation-selector.html.
- platform/chromium-cg-mac-leopard/fast/text/unicode-variation-selector-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/text/unicode-variation-selector-expected.png: Added.
- platform/chromium-linux/fast/text/unicode-variation-selector-expected.png: Added.
- platform/chromium-linux/fast/text/unicode-variation-selector-expected.txt: Added.
- platform/chromium-mac-leopard/fast/text/unicode-variation-selector-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/text/unicode-variation-selector-expected.png: Added.
- platform/chromium-win/fast/text/unicode-variation-selector-expected.png: Added.
- platform/chromium-win/fast/text/unicode-variation-selector-expected.txt: Added.
- platform/chromium/fast/text/unicode-variation-selector-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 4:18 PM Changeset in webkit [102994] by
-
- 2 edits in trunk/Tools
TestFailures: store the name of the buildbot results directory in a property
https://bugs.webkit.org/show_bug.cgi?id=74663
Reviewed by Adam Barth.
Store the name of the results directory as a property on Buildbot's
prototype. This allows subclasses of Buildbot to customize the results
directory.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/scripts/Buildbot.js:
(Buildbot.prototype.resultsDirectoryURL):
- 4:02 PM Changeset in webkit [102993] by
-
- 5 edits in trunk
[CMake] Remove ENABLE_DATAGRID from the buildsystem.
https://bugs.webkit.org/show_bug.cgi?id=74640
Reviewed by Antonio Gomes.
r84991 removed Datagrid from the tree, but the options in CMake were
kept.
- Source/cmake/OptionsBlackBerry.cmake:
- Source/cmake/OptionsEfl.cmake:
- Source/cmake/OptionsWinCE.cmake:
- Source/cmakeconfig.h.cmake:
- 3:50 PM Changeset in webkit [102992] by
-
- 2 edits in trunk/Source/WebCore
Touch make_name.pl in an attempt to make Qt bots happy.
- dom/make_names.pl:
(printNamesHeaderFile):
- 3:48 PM Changeset in webkit [102991] by
-
- 4 edits in trunk/Source/WebCore
Unreviewed. Rebaselined run-bindings-tests results.
- bindings/scripts/test/JS/JSFloat64Array.cpp:
- bindings/scripts/test/JS/JSTestMediaQueryListListener.cpp:
- bindings/scripts/test/JS/JSTestObj.cpp:
- 3:46 PM Changeset in webkit [102990] by
-
- 2 edits in trunk/Tools
[chromium] pass --delete_unversioned_trees to gclient on the bots
https://bugs.webkit.org/show_bug.cgi?id=74565
Reviewed by Kenneth Russell.
It was temporarily removed in r102891 to keep the bots green. Now
that the bots have cycled, we can add it back.
- Scripts/update-webkit-chromium:
- 3:44 PM Changeset in webkit [102989] by
-
- 9 edits in trunk/Source/WebCore
Separate box alignment and box pack values into separate enums.
https://bugs.webkit.org/show_bug.cgi?id=74580
Reviewed by Darin Adler.
No new tests / refactoring only.
Separating these types cleans up the code by removing several assertions that
values are in the correct ranges, as this is ensured by the type system.
- css/CSSComputedStyleDeclaration.cpp:
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
- css/CSSPrimitiveValueMappings.h:
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
(WebCore::CSSPrimitiveValue::operator EBoxPack):
(WebCore::CSSPrimitiveValue::operator EBoxAlignment):
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
- rendering/RenderDeprecatedFlexibleBox.cpp:
(WebCore::RenderDeprecatedFlexibleBox::layoutHorizontalBox):
(WebCore::RenderDeprecatedFlexibleBox::layoutVerticalBox):
- rendering/RenderFullScreen.cpp:
(createFullScreenStyle):
- rendering/style/RenderStyle.h:
(WebCore::InheritedFlags::boxPack):
(WebCore::InheritedFlags::setBoxAlign):
(WebCore::InheritedFlags::setBoxPack):
(WebCore::InheritedFlags::initialBoxPack):
- rendering/style/RenderStyleConstants.h:
- rendering/style/StyleDeprecatedFlexibleBoxData.h:
- 3:13 PM Changeset in webkit [102988] by
-
- 2 edits in trunk/Tools
[Refactoring] In prepare-ChangeLog, make several global variables be used only through parameter passing
https://bugs.webkit.org/show_bug.cgi?id=74497
Reviewed by Ryosuke Niwa.
We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
manner. This bug is one of the incremental refactorings to remove all top-level
code and global variables from prepare-ChangeLog. In this patch,
we make the following global variables be used only through parameter passing.
- $bugDescription
- $bugNumber
- $name
- $emailAddress
- $gitReviewer
- $writeChangeLogs
- Scripts/prepare-ChangeLog:
(fetchBugDescriptionFromURL):
(generateNewChangeLogs):
(reviewerAndDescriptionForGitCommit):
- 3:10 PM Changeset in webkit [102987] by
-
- 2 edits10 adds in trunk/Source/WebCore
REGRESSION(r102663): generate-bindings.pl runs every time
https://bugs.webkit.org/show_bug.cgi?id=74481
Reviewed by Adam Barth.
See the comment #1 of bug 74481 for the cause of this bug.
This patch fixes generate-bindings.pl so that it generates .h and .cpp files
even for IDL files that do not need .h and .cpp files. This is just to prevent
build scripts from trying to generate .h and .cpp files at every build.
No new tests. No change in behavior.
- bindings/scripts/generate-bindings.pl:
(generateEmptyHeaderAndCpp): Generates .h and .cpp files for IDL files
that do not need .h and .cpp files.
- bindings/scripts/test/CPP/CPPTestSupplemental.cpp: Added.
- bindings/scripts/test/CPP/CPPTestSupplemental.h: Added.
- bindings/scripts/test/GObject/GObjectTestSupplemental.cpp: Added.
- bindings/scripts/test/GObject/GObjectTestSupplemental.h: Added.
- bindings/scripts/test/JS/JSTestSupplemental.cpp: Added.
- bindings/scripts/test/JS/JSTestSupplemental.h: Added.
- bindings/scripts/test/ObjC/ObjCTestSupplemental.cpp: Added.
- bindings/scripts/test/ObjC/ObjCTestSupplemental.h: Added.
- bindings/scripts/test/V8/V8TestSupplemental.cpp: Added.
- bindings/scripts/test/V8/V8TestSupplemental.h: Added.
- 2:53 PM Changeset in webkit [102986] by
-
- 1 copy in tags/Safari-534.53.11
New tag.
- 2:19 PM Changeset in webkit [102985] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium test expectations update; pull up some
downstream suppressions.
- platform/chromium/test_expectations.txt:
- 2:17 PM Changeset in webkit [102984] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed build fix. Mac build broken when CSS Filters enabled.
Needed to move Filter headers out as private headers in WebCore.framework.
- WebCore.xcodeproj/project.pbxproj:
- 2:00 PM Changeset in webkit [102983] by
-
- 5 edits in trunk/Source/WebCore
WebCore has two (disconnected) ways to keep track of updated widgets, should be unified
https://bugs.webkit.org/show_bug.cgi?id=74367
Reviewed by Adam Barth.
It seems the FrameView updateWidgets set is needed for now,
so just making FrameView::addWidgetToUpdate mark the DOM node
as needing a widget update and later when it goes to call
updateWidget() checking first if it needs an update.
No new tests, just adding an assert.
- html/HTMLEmbedElement.cpp:
(WebCore::HTMLEmbedElement::updateWidget):
- html/HTMLObjectElement.cpp:
(WebCore::HTMLObjectElement::updateWidget):
- html/HTMLPlugInImageElement.h:
(WebCore::HTMLPlugInImageElement::needsWidgetUpdate):
(WebCore::HTMLPlugInImageElement::setNeedsWidgetUpdate):
- page/FrameView.cpp:
(WebCore::FrameView::addWidgetToUpdate):
(WebCore::FrameView::updateWidget):
- 1:56 PM Changeset in webkit [102982] by
-
- 2 edits in trunk/Source/WebCore
Windows project file is broken. It has a missing </File> enclosing tag
https://bugs.webkit.org/show_bug.cgi?id=74632
Reviewed by Anders Carlsson.
No new tests, just fixing the project file.
- WebCore.vcproj/WebCore.vcproj:
- 1:35 PM Changeset in webkit [102981] by
-
- 11 edits in trunk
<table><tr><td><svg><desc><td> parses incorrectly
https://bugs.webkit.org/show_bug.cgi?id=68106
Reviewed by Eric Seidel.
Source/WebCore:
This patch updates our implementation of the HTML5 parser to account
for recent changes in the spec. The main change in this patch is to
remove the "in foreign content" state from the tree builder. Rather
than maintaining this as a separate state, the parser now introspects
on the stack of open elements to determine whether the parser is in
foriegn content. In the process, I've deleted some now-unused
machinery in the tree builder.
Tested by the html5lib LayoutTests. These tests show the progression
in our spec compliance.
- html/parser/HTMLElementStack.cpp:
- html/parser/HTMLElementStack.h:
- html/parser/HTMLTreeBuilder.cpp:
- html/parser/HTMLTreeBuilder.h:
- mathml/mathattrs.in:
LayoutTests:
- html5lib/resources/webkit01.dat:
- This test had an incorrect expectation that matched our previous behavior. The new expected result matches Firefox's implemenation as well.
- html5lib/runner-expected.txt:
- platform/chromium/html5lib/runner-expected.txt:
- Updated to show test progressions. The one non-monotonic improvement is some churn in which of the unsafe-text tests we pass. I'll look into this issue in a future patch.
- 1:34 PM Changeset in webkit [102980] by
-
- 3 edits in trunk/Source/WebKit/chromium
[chromium] Add forUseOnAnotherThread to WebGraphicsContext3D::Attributes
https://bugs.webkit.org/show_bug.cgi?id=74557
Reviewed by Kenneth Russell.
- public/platform/WebGraphicsContext3D.h:
(WebKit::WebGraphicsContext3D::Attributes::Attributes):
- src/GraphicsContext3DChromium.cpp:
- 1:30 PM Changeset in webkit [102979] by
-
- 11 edits in trunk/Source/WebCore
m_hasCounterNodeMap and m_everHadLayout should be private to RenderObject
https://bugs.webkit.org/show_bug.cgi?id=74645
Reviewed by Eric Seidel.
Made them private and added getters and setters as needed.
- rendering/RenderCounter.cpp:
(WebCore::makeCounterNode):
(WebCore::RenderCounter::destroyCounterNodes):
(WebCore::updateCounters):
(WebCore::RenderCounter::rendererStyleChanged):
(showCounterRendererTree):
- rendering/RenderFlowThread.cpp:
(WebCore::RenderFlowThread::layout):
- rendering/RenderObject.h:
(WebCore::RenderObject::hasCounterNodeMap):
(WebCore::RenderObject::setHasCounterNodeMap):
(WebCore::RenderObject::everHadLayout):
- rendering/svg/RenderSVGForeignObject.cpp:
(WebCore::RenderSVGForeignObject::layout):
- rendering/svg/RenderSVGImage.cpp:
(WebCore::RenderSVGImage::layout):
- rendering/svg/RenderSVGResourceContainer.cpp:
(WebCore::RenderSVGResourceContainer::layout):
- rendering/svg/RenderSVGResourceMarker.cpp:
(WebCore::RenderSVGResourceMarker::layout):
- rendering/svg/RenderSVGRoot.cpp:
(WebCore::RenderSVGRoot::layout):
- rendering/svg/RenderSVGShape.cpp:
(WebCore::RenderSVGShape::layout):
- rendering/svg/RenderSVGText.cpp:
(WebCore::RenderSVGText::layout):
- 1:29 PM Changeset in webkit [102978] by
-
- 3 edits in trunk/Source/JavaScriptCore
Use more macrology in JSC::Options
https://bugs.webkit.org/show_bug.cgi?id=72938
Patch by Andy Wingo <wingo@igalia.com> on 2011-12-15
Reviewed by Filip Pizlo.
- runtime/Options.cpp:
(JSC::Options::initializeOptions):
- runtime/Options.h: Use macros to ensure that all heuristics are
declared and have initializers.
- 1:07 PM Changeset in webkit [102977] by
-
- 3 edits in trunk/Source/WebCore
Not able to navigate the Resource tab options properly with arrow keys after adding the sticky-notes.
https://bugs.webkit.org/show_bug.cgi?id=72013
Reviewed by Pavel Feldman.
- inspector/front-end/DatabaseQueryView.js:
(WebInspector.DatabaseQueryView):
(WebInspector.DatabaseQueryView.prototype._messagesClicked):
- inspector/front-end/ResourcesPanel.js:
(WebInspector.DatabaseTreeElement.prototype.onexpand):
- 12:46 PM Changeset in webkit [102976] by
-
- 345 edits in branches/subpixellayout/LayoutTests
Checking in updated 'fast' test expectations for sub-pixel positioning.
- 12:44 PM Changeset in webkit [102975] by
-
- 6 edits2 adds in trunk/Source
Add ScrollingCoordinator class and ENABLE_THREADED_SCROLLING define
https://bugs.webkit.org/show_bug.cgi?id=74639
Reviewed by Andreas Kling.
Source/JavaScriptCore:
Add ENABLE_THREADED_SCROLLING #define.
- wtf/Platform.h:
Source/WebCore:
Add a ScrollingCoordinator class and make it a member of Page. Tear it down
when the page goes away.
- WebCore.xcodeproj/project.pbxproj:
- page/Page.cpp:
(WebCore::Page::Page):
(WebCore::Page::~Page):
- page/Page.h:
(WebCore::Page::scrollingCoordinator):
- page/ScrollingCoordinator.cpp: Added.
(WebCore::ScrollingCoordinator::create):
(WebCore::ScrollingCoordinator::ScrollingCoordinator):
(WebCore::ScrollingCoordinator::~ScrollingCoordinator):
(WebCore::ScrollingCoordinator::pageDestroyed):
- page/ScrollingCoordinator.h: Added.
- 12:32 PM Changeset in webkit [102974] by
-
- 3 edits1 delete in trunk/Source/WebKit/chromium
[chromium] MediaStream API: Fixing #include statements and removing forwarding header file
https://bugs.webkit.org/show_bug.cgi?id=74598
Reviewed by Darin Fisher.
WebMediaStreamSource.h had some issues when accessed from chromium. Also cleaned up the forwarding header.
- WebKit.gyp:
- public/WebMediaStreamSource.h: Removed.
- public/platform/WebMediaStreamSource.h:
- 12:06 PM BuildingGtk edited by
- (diff)
- 11:54 AM Changeset in webkit [102973] by
-
- 19 edits3 moves in trunk
Rename WEBKIT_lose_context to WEBKIT_WEBGL_lose_context
https://bugs.webkit.org/show_bug.cgi?id=71870
Reviewed by James Robinson.
Re-landing after original commit was rolled out.
Source/WebCore:
Rename largely done with do-webcore-rename with a couple of
necessary manual fixups. Ran WebGL layout tests.
- CMakeLists.txt:
- DerivedSources.make:
- DerivedSources.pri:
- GNUmakefile.list.am:
- Target.pri:
- WebCore.gypi:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSWebGLRenderingContextCustom.cpp:
(WebCore::toJS):
- bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:
(WebCore::toV8Object):
- html/canvas/WebGLExtension.h:
- html/canvas/WebGLLoseContext.cpp: Copied from Source/WebCore/html/canvas/WebKitLoseContext.cpp.
(WebCore::WebGLLoseContext::WebGLLoseContext):
(WebCore::WebGLLoseContext::~WebGLLoseContext):
(WebCore::WebGLLoseContext::getName):
(WebCore::WebGLLoseContext::create):
(WebCore::WebGLLoseContext::loseContext):
(WebCore::WebGLLoseContext::restoreContext):
- html/canvas/WebGLLoseContext.h: Copied from Source/WebCore/html/canvas/WebKitLoseContext.h.
- html/canvas/WebGLLoseContext.idl: Copied from Source/WebCore/html/canvas/WebKitLoseContext.idl.
- html/canvas/WebGLRenderingContext.cpp:
(WebCore::WebGLRenderingContext::getExtension):
(WebCore::WebGLRenderingContext::getSupportedExtensions):
(WebCore::WebGLRenderingContext::maybeRestoreContext):
- html/canvas/WebGLRenderingContext.h:
- html/canvas/WebKitLoseContext.cpp: Removed.
- html/canvas/WebKitLoseContext.h: Removed.
- html/canvas/WebKitLoseContext.idl: Removed.
LayoutTests:
Synchronized context-lost-restored.html and context-lost.html with
Khronos repository; upstream tests must check for multiple vendor
prefixes.
- fast/canvas/webgl/WebGLContextEvent.html:
- fast/canvas/webgl/context-destroyed-crash.html:
- fast/canvas/webgl/context-lost-expected.txt:
- fast/canvas/webgl/context-lost-restored.html:
- fast/canvas/webgl/context-lost.html:
- 11:47 AM Changeset in webkit [102972] by
-
- 2 edits in trunk/Source/WebKit/chromium
Unreviewed, rolling out r102956.
http://trac.webkit.org/changeset/102956
https://bugs.webkit.org/show_bug.cgi?id=74334
Broke Chromium/Win build.
- features.gypi:
- 11:45 AM Changeset in webkit [102971] by
-
- 3 edits in trunk/Source/WebKit/efl
[EFL] Clean up and refactor the memory cache functions in ewk_settings.
https://bugs.webkit.org/show_bug.cgi?id=72140
Reviewed by Antonio Gomes.
Use a better naming prefix, as "ewk_settings_cache" was too general,
and make it possible to pass all parameters to
MemoryCache::setCapacities().
- ewk/ewk_settings.cpp:
(ewk_settings_object_cache_capacity_set):
(ewk_settings_object_cache_enable_get):
(ewk_settings_object_cache_enable_set):
- ewk/ewk_settings.h:
- 11:34 AM Changeset in webkit [102970] by
-
- 2 edits in trunk/Source/WebKit/chromium
Unreviewed. Disable flaky tests. Built and tested on Linux.
https://bugs.webkit.org/show_bug.cgi?id=74623
- tests/CCLayerTreeHostTest.cpp:
(WTF::TEST_F):
- 11:28 AM Changeset in webkit [102969] by
-
- 2 edits in trunk/Source/WebCore
https://bugs.webkit.org/show_bug.cgi?id=74631
HTMLMediaElement should not register for document activation callbacks as it doesn't use them
Reviewed by Eric Carlson.
No new tests. (No behavior change, pruning useless code)
- html/HTMLMediaElement.cpp:
(WebCore::HTMLMediaElement::HTMLMediaElement):
(WebCore::HTMLMediaElement::~HTMLMediaElement):
(WebCore::HTMLMediaElement::willMoveToNewOwnerDocument):
(WebCore::HTMLMediaElement::didMoveToNewOwnerDocument):
- 11:18 AM Changeset in webkit [102968] by
-
- 14 edits7 adds in trunk
Text tracks should be treated differently according to their kind
https://bugs.webkit.org/show_bug.cgi?id=72547
Reviewed by Sam Weinig.
Source/WebCore:
Tests: media/track/track-default-attribute.html
media/track/track-mode-not-changed-by-new-track.html
media/track/track-mode-triggers-loading.html
- html/HTMLAudioElement.cpp:
(WebCore::HTMLAudioElement::HTMLAudioElement): Add "createdByParser" parameter.
(WebCore::HTMLAudioElement::create): Ditto.
(WebCore::HTMLAudioElement::createForJSConstructor): Deal with constructor change.
- html/HTMLAudioElement.h:
- html/HTMLMediaElement.cpp:
(WebCore::HTMLMediaElement::HTMLMediaElement): Add "createdByParser" parameter. Initialize m_parsingInProgress.
(WebCore::HTMLMediaElement::finishParsingChildren): Clear m_parsingInProgress. Schedule track
loading if necessary.
(WebCore::HTMLMediaElement::loadTimerFired): Call configureTextTracks not call scheduleLoad,
it just schedules the load timer again.
(WebCore::HTMLMediaElement::prepareForLoad): Add all non-disabled track elements to a vector
so we can prevent the media element's readyState from reaching HAVE_METADATA until the
tracks are ready.
(WebCore::HTMLMediaElement::textTracksAreReady): New. Return false unless all tracks that were
not disabled when loading started have loaded or failed.
(WebCore::HTMLMediaElement::textTrackReadyStateChanged): Call setReadyState when a track is
stops loading.
(WebCore::HTMLMediaElement::textTrackModeChanged): Trigger <track> loading when the mode
changes to hidden or showing for the first time.
(WebCore::HTMLMediaElement::setReadyState): Do not advance to HAVE_METADATA or higher while
track elements are loading.
(WebCore::HTMLMediaElement::addTrack): Removed.
(WebCore::HTMLMediaElement::showingTrackWithSameKind): New.
(WebCore::HTMLMediaElement::trackWasAdded):
(WebCore::HTMLMediaElement::trackWillBeRemoved): Flag a track as unconfigured so it will be
reconfigured if it is added to another element.
(WebCore::HTMLMediaElement::userIsInterestedInThisLanguage): New.
(WebCore::HTMLMediaElement::userIsInterestedInThisTrack): New. Consider user preferences.
(WebCore::HTMLMediaElement::configureTextTrack): New. Configure a track as per the user's preferences.
(WebCore::HTMLMediaElement::configureTextTracks): New. Configure all track elements.
- html/HTMLMediaElement.h:
- html/HTMLMediaElement.h:
- html/HTMLTagNames.in: Add constructorNeedsCreatedByParser to audio and video.
- html/HTMLTrackElement.cpp:
(WebCore::HTMLTrackElement::HTMLTrackElement): Initialize m_hasBeenConfigured.
- html/HTMLTrackElement.h:
(WebCore::HTMLTrackElement::hasBeenConfigured):
(WebCore::HTMLTrackElement::setHasBeenConfigured):
- html/HTMLVideoElement.cpp:
(WebCore::HTMLVideoElement::HTMLVideoElement): Add "createdByParser" parameter.
(WebCore::HTMLVideoElement::create): Ditto.
- html/HTMLVideoElement.h:
- html/TextTrack.cpp:
(WebCore::TextTrack::TextTrack): Initialize m_mode to DISABLED, not HIDDEN. Initialize m_showingByDefault.
(WebCore::TextTrack::setMode): Clear the "showing by default" flag when a track's mode is
explicitly set to SHOWING.
(WebCore::TextTrack::mode): Return SHOWING whenever the "showing by default" flag is set.
- html/TextTrack.h:
(WebCore::TextTrack::showingByDefault):
(WebCore::TextTrack::setShowingByDefault):
- html/TextTrackCue.cpp:
(WebCore::TextTrackCue::isActive): Return false if a cue has no track, or if its track is disabled.
(WebCore::TextTrackCue::setIsActive): Don't enable a cue if it has no track, or if its track
is disabled.
LayoutTests:
- media/track/captions-webvtt/metadata.vtt: Added.
- media/track/track-default-attribute-expected.txt: Added.
- media/track/track-default-attribute.html: Added.
- media/track/track-mode-not-changed-by-new-track-expected.txt: Added.
- media/track/track-mode-not-changed-by-new-track.html: Added.
- media/track/track-mode-triggers-loading-expected.txt: Added.
- media/track/track-mode-triggers-loading.html: Added.
- 11:13 AM Changeset in webkit [102967] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium test expectations update; add suppression.
https://bugs.webkit.org/show_bug.cgi?id=74634
- platform/chromium/test_expectations.txt:
- 11:11 AM Changeset in webkit [102966] by
-
- 7 edits in trunk
[EFL] Add a few more web database functions to ewk_settings.
https://bugs.webkit.org/show_bug.cgi?id=72148
Reviewed by Antonio Gomes.
Source/WebKit/efl:
Add code to change the default quota (there as only a getter so far)
and one to clear the databases.
- ewk/ewk_settings.cpp:
(ewk_settings_web_database_default_quota_set):
(ewk_settings_web_database_clear):
- ewk/ewk_settings.h:
Tools:
- DumpRenderTree/efl/LayoutTestControllerEfl.cpp:
(LayoutTestController::clearAllDatabases):
(LayoutTestController::setDatabaseQuota):
LayoutTests:
LayoutTestController::setDatabaseQuota is implemented now.
- platform/efl/Skipped:
- 11:07 AM Changeset in webkit [102965] by
-
- 2 edits in trunk/Source/WebKit2
[GTK] New API test for WindowProperties fails
https://bugs.webkit.org/show_bug.cgi?id=74630
Patch by Gustavo Noronha Silva <gustavo.noronha@collabora.com> on 2011-12-15
Reviewed by Martin Robinson.
- UIProcess/API/gtk/tests/TestWebKitWebView.cpp:
(WindowProperties::viewReadyToShow): assert each member to make
assertion error messages more useful, and avoid asserting x and y,
since we are getting bad values from WebCore, for some reason.
(testWebViewWindowProperties): use smaller values that fit inside the
800x600 screen used by the bots.
- 11:04 AM Changeset in webkit [102964] by
-
- 2 edits in trunk/LayoutTests
https://bugs.webkit.org/show_bug.cgi?id=74607
Removed a skipped test after rolling out r102829
Unreviewed.
- platform/qt/Skipped:
- 10:56 AM Changeset in webkit [102963] by
-
- 9 edits in trunk/Source
EventDispatcher should handle wheel events on the connection queue
https://bugs.webkit.org/show_bug.cgi?id=74627
Reviewed by Andreas Kling.
Source/JavaScriptCore:
Add a BoundFunctionImpl specialization that takes three parameters.
- wtf/Functional.h:
(WTF::C::):
(WTF::R):
(WTF::bind):
Source/WebKit2:
Send wheel events to the EventDispatcher, which handles them on the connection work queue, and
immediately bounces them to the main thread (for now).
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::handleWheelEvent):
(WebKit::WebPageProxy::didReceiveEvent):
- WebProcess/WebPage/EventDispatcher.cpp:
(WebKit::EventDispatcher::wheelEvent):
(WebKit::EventDispatcher::dispatchWheelEvent):
- WebProcess/WebPage/EventDispatcher.h:
- WebProcess/WebPage/EventDispatcher.messages.in:
- WebProcess/WebPage/WebPage.h:
- 10:50 AM Changeset in webkit [102962] by
-
- 4 edits3 deletes in trunk
Unreviewed, rolling out r102829.
http://trac.webkit.org/changeset/102829
https://bugs.webkit.org/show_bug.cgi?id=74533
Caused https://bugs.webkit.org/show_bug.cgi?id=74555
Source/WebCore:
- html/HTMLPlugInImageElement.cpp:
(WebCore::HTMLPlugInImageElement::HTMLPlugInImageElement):
(WebCore::HTMLPlugInImageElement::willMoveToNewOwnerDocument):
(WebCore::HTMLPlugInImageElement::didMoveToNewOwnerDocument):
(WebCore::HTMLPlugInImageElement::documentWillBecomeInactive):
(WebCore::HTMLPlugInImageElement::documentDidBecomeActive):
- html/HTMLPlugInImageElement.h:
LayoutTests:
- media/crash-closing-page-with-media-as-plugin-fallback-expected.txt: Removed.
- media/crash-closing-page-with-media-as-plugin-fallback.html: Removed.
- media/resources/video-with-poster-as-object-fallback.html: Removed.
- 10:45 AM Changeset in webkit [102961] by
-
- 21 edits1 copy1 add in trunk
[Navigation Timing] Use monotonicallyIncreasingTime() instead of currentTime()
https://bugs.webkit.org/show_bug.cgi?id=58354
Reviewed by Pavel Feldman.
Source/WebCore:
No new tests. Relies on existing webtiming-* tests.
- CMakeLists.txt:
- GNUmakefile.list.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- dom/Document.cpp: Use monotonic times.
(WebCore::Document::setReadyState):
(WebCore::Document::finishedParsing):
- inspector/InspectorInstrumentation.cpp:
(WebCore::InspectorInstrumentation::didFinishLoadingImpl): Convert monotonicFinishTime to wall time if needed.
- inspector/InspectorResourceAgent.cpp:
(WebCore::buildObjectForTiming): Convert monotonic requestTime to wall time.
(WebCore::buildObjectForResourceResponse): Plumbing for above.
(WebCore::buildObjectForCachedResource): Ditto.
(WebCore::InspectorResourceAgent::willSendRequest): Ditto.
(WebCore::InspectorResourceAgent::didReceiveResponse): Ditto.
(WebCore::InspectorResourceAgent::didLoadResourceFromMemoryCache): Ditto.
- loader/DocumentLoadTiming.cpp: Added.
(WebCore::DocumentLoadTiming::DocumentLoadTiming):
(WebCore::DocumentLoadTiming::setNavigationStart): Determine reference time and root reference time.
(WebCore::DocumentLoadTiming::addRedirect): Moved logic from MainResourceLoader.
(WebCore::DocumentLoadTiming::convertMonotonicTimeToDocumentTime): Helper to compute wall time from monotonic time.
- loader/DocumentLoadTiming.h: Turned into class. Made times monotonic.
(WebCore::DocumentLoadTiming::setUnloadEventStart):
(WebCore::DocumentLoadTiming::setUnloadEventEnd):
(WebCore::DocumentLoadTiming::setRedirectStart):
(WebCore::DocumentLoadTiming::setRedirectEnd):
(WebCore::DocumentLoadTiming::setFetchStart):
(WebCore::DocumentLoadTiming::setResponseEnd):
(WebCore::DocumentLoadTiming::setLoadEventStart):
(WebCore::DocumentLoadTiming::setLoadEventEnd):
(WebCore::DocumentLoadTiming::setHasSameOriginAsPreviousDocument):
(WebCore::DocumentLoadTiming::navigationStart):
(WebCore::DocumentLoadTiming::unloadEventStart):
(WebCore::DocumentLoadTiming::unloadEventEnd):
(WebCore::DocumentLoadTiming::redirectStart):
(WebCore::DocumentLoadTiming::redirectEnd):
(WebCore::DocumentLoadTiming::redirectCount):
(WebCore::DocumentLoadTiming::fetchStart):
(WebCore::DocumentLoadTiming::responseEnd):
(WebCore::DocumentLoadTiming::loadEventStart):
(WebCore::DocumentLoadTiming::loadEventEnd):
(WebCore::DocumentLoadTiming::hasCrossOriginRedirect):
(WebCore::DocumentLoadTiming::hasSameOriginAsPreviousDocument):
- loader/FrameLoader.cpp:
(WebCore::FrameLoader::stopLoading):
(WebCore::FrameLoader::commitProvisionalLoad):
(WebCore::FrameLoader::continueLoadAfterWillSubmitForm):
(WebCore::FrameLoader::loadProvisionalItemFromCachedPage):
- loader/MainResourceLoader.cpp:
(WebCore::MainResourceLoader::continueAfterNavigationPolicy):
(WebCore::MainResourceLoader::willSendRequest): Moved logic to DocumentLoadTiming.
(WebCore::MainResourceLoader::didReceiveData): Use monotonic time.
(WebCore::MainResourceLoader::didFinishLoading): Ditto.
(WebCore::MainResourceLoader::load):
- page/DOMWindow.cpp:
(WebCore::DOMWindow::dispatchLoadEvent):
- page/DOMWindow.h: Removed dispatchTimedEvent. It doesn't really help in the new model.
- page/PerformanceNavigation.cpp:
(WebCore::PerformanceNavigation::redirectCount):
- page/PerformanceTiming.cpp: Removed skew correction code. This should never happen now.
(WebCore::PerformanceTiming::navigationStart):
(WebCore::PerformanceTiming::unloadEventStart):
(WebCore::PerformanceTiming::unloadEventEnd):
(WebCore::PerformanceTiming::redirectStart):
(WebCore::PerformanceTiming::redirectEnd):
(WebCore::PerformanceTiming::fetchStart):
(WebCore::PerformanceTiming::responseEnd):
(WebCore::PerformanceTiming::domLoading):
(WebCore::PerformanceTiming::domInteractive):
(WebCore::PerformanceTiming::domContentLoadedEventStart):
(WebCore::PerformanceTiming::domContentLoadedEventEnd):
(WebCore::PerformanceTiming::domComplete):
(WebCore::PerformanceTiming::loadEventStart):
(WebCore::PerformanceTiming::loadEventEnd):
(WebCore::PerformanceTiming::resourceLoadTimeRelativeToAbsolute): Used for ResourceLoadTiming.
(WebCore::PerformanceTiming::monotonicTimeToIntegerMilliseconds): Used for DocumentTiming and DocumentLoadTiming.
- page/PerformanceTiming.h:
- platform/network/ResourceLoadTiming.cpp:
(WebCore::ResourceLoadTiming::convertResourceLoadTimeToDocumentTime):
- platform/network/ResourceLoadTiming.h: Added helper function to convert to wall times. Added instructions for use.
LayoutTests:
- fast/dom/script-tests/webtiming.js: Current monotonic time is unknown until performance.now() is available. Use 0 until then.
- 10:44 AM Changeset in webkit [102960] by
-
- 11 edits in trunk/Source/WebKit2
[WK2] Extend WebNotification to include its origin https://bugs.webkit.org/show_bug.cgi?id=74615 <rdar://problem/10587164>
Reviewed by Sam Weinig.
- Shared/API/c/WKSecurityOrigin.h: Expose API that converts the security origin to database
identifier.
- Shared/API/c/WKSecurityOrigin.cpp:
(WKSecurityOriginCopyDatabaseIdentifier):
- UIProcess/Notifications/WebNotification.h: Extend WebNotification to include the origin.
(WebKit::WebNotification::create):
(WebKit::WebNotification::origin):
- UIProcess/Notifications/WebNotification.cpp: Remove unneeded encode() and decode() functions.
(WebKit::WebNotification::WebNotification):
- UIProcess/API/C/WKNotification.h: Expose WebNotification's origin().
- UIProcess/API/C/WKNotification.cpp:
(WKNotificationGetSecurityOrigin):
- UIProcess/Notifications/WebNotificationManagerProxy.messages.in: Update show() to include the
origin of the notification.
- UIProcess/Notifications/WebNotificationManagerProxy.cpp:
(WebKit::WebNotificationManagerProxy::show):
- UIProcess/Notifications/WebNotificationManagerProxy.h:
- WebProcess/Notifications/WebNotificationManager.cpp:
(WebKit::WebNotificationManager::show): Pass the notification's exec context's origin as
identifier.
- 10:39 AM Changeset in webkit [102959] by
-
- 3 edits in trunk/Source/WebKit2
[Qt][WK2] Add test for download policy on navigation request
https://bugs.webkit.org/show_bug.cgi?id=74541
Patch by Rafael Brandao <rafael.lobo@openbossa.org> on 2011-12-15
Reviewed by Tor Arne Vestbø.
- UIProcess/API/qt/tests/qmltests/DesktopBehavior/tst_navigationRequested.qml:
- UIProcess/API/qt/tests/qmltests/WebView/tst_download.qml: Make it wait for a
downloadFinished signal to finish the test.
- 10:28 AM Changeset in webkit [102958] by
-
- 2 edits in trunk/Source/WebCore
plugin crash
[GTK] Plugins sometimes crash WebKitGTK+ with Gdk-CRITICAL : gdk_window_get_toplevel: assertion `GDK_IS_WINDOW (window)' failed
https://bugs.webkit.org/show_bug.cgi?id=73719
Patch by Martin Robinson <mrobinson@igalia.com> on 2011-12-15
Reviewed by Philippe Normand.
No new tests. It's difficult to test or reproduce this exact situation
as it only occurs when running plugins under nspluginwrapper.
- plugins/gtk/PluginViewGtk.cpp:
(WebCore::PluginView::platformGetValue): Properly handle when the plugin tries to
get the window value when the GtkSocket is no longer realized.
- 10:21 AM Changeset in webkit [102957] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium expectations update. Mark another flaky compositing test.
- platform/chromium/test_expectations.txt:
- 10:20 AM Changeset in webkit [102956] by
-
- 2 edits in trunk/Source/WebKit/chromium
Enable CSS_FILTERS in Chromium.
https://bugs.webkit.org/show_bug.cgi?id=74334
Reviewed by Kenneth Russell.
- features.gypi:
- 10:17 AM Changeset in webkit [102955] by
-
- 19 edits2 adds in trunk
Fix find on web pages with -webkit-user-select: none for Chromium
https://bugs.webkit.org/show_bug.cgi?id=72281
Patch by Martin Kosiba <mkosiba@google.com> on 2011-12-15
Reviewed by Ryosuke Niwa.
Source/WebCore:
Adding findStringAndScrollToVisible to Editor. This new method returns
the new match as a range rather than modify the active selection.
Test: editing/text-iterator/findString-selection-disabled.html
- editing/Editor.cpp:
(WebCore::Editor::findStringAndScrollToVisible):
- editing/Editor.h:
Source/WebKit/chromium:
This will make it possible to search for text that has
selection disabled (via the webkit-user-select attribute).
WebFrameImpl::find will use findStringAndScrollToVisible, which is
similar to findString except that it uses Range directly rather
than passing the find result in the active selection.
- src/WebFrameImpl.cpp:
(WebKit::WebFrameImpl::find):
Tools:
Provided a partial findString implementation. This doesn't support
all of the FindOptions since they're not exposed via WebFindOptions.
- DumpRenderTree/chromium/LayoutTestController.cpp:
(LayoutTestController::LayoutTestController):
(LayoutTestController::findString):
- DumpRenderTree/chromium/LayoutTestController.h:
LayoutTests:
Adding a layout test to verify that find works correctly on pages
that prevent text selection.
- editing/text-iterator/findString-selection-disabled-expected.txt: Added.
- editing/text-iterator/findString-selection-disabled.html: Added.
- platform/efl/Skipped:
- platform/gtk-wk2/Skipped:
- platform/mac-lion/Skipped:
- platform/mac-snowleopard/Skipped:
- platform/mac/Skipped:
- platform/qt-5.0/Skipped:
- platform/qt-mac/Skipped:
- platform/qt-wk2/Skipped:
- platform/wk2/Skipped:
- 10:15 AM Changeset in webkit [102954] by
-
- 4 edits in trunk/Source/WebKit2
Move WorkQueue Mach handlers over to WTF::Function
https://bugs.webkit.org/show_bug.cgi?id=74620
Reviewed by Sam Weinig.
- Platform/CoreIPC/mac/ConnectionMac.cpp:
(CoreIPC::Connection::open):
(CoreIPC::Connection::initializeDeadNameSource):
- Platform/WorkQueue.h:
- Platform/mac/WorkQueueMac.cpp:
(WorkQueue::EventSource::EventSource):
(WorkQueue::EventSource::eventHandler):
(WorkQueue::registerMachPortEventHandler):
- 10:05 AM Changeset in webkit [102953] by
-
- 8 edits in trunk/Source
Add WTF::Function to wtf/Forward.h
https://bugs.webkit.org/show_bug.cgi?id=74576
Reviewed by Adam Roben.
Source/JavaScriptCore:
- jsc.cpp:
Work around a name conflict in the readline library.
- wtf/Forward.h:
Add Function.
Source/WebCore:
- bindings/scripts/CodeGeneratorJS.pm:
(GenerateImplementation):
Add a JSC:: qualifier to the Function flags to avoid ambiguities.
Source/WebKit2:
- Platform/RunLoop.h:
- Platform/WorkQueue.h:
Remove forward declarations and just include wtf/Forward.h.
- 9:55 AM Changeset in webkit [102952] by
-
- 7 edits12 adds in trunk
Hardware-backed renderLayer could avoid repainting during a positioned movement layout
https://bugs.webkit.org/show_bug.cgi?id=74370
Reviewed by Simon Fraser.
Source/WebCore:
Tests: compositing/absolute-position-changed-in-composited-layer.html
compositing/absolute-position-changed-with-composited-parent-layer.html
compositing/fixed-position-changed-in-composited-layer.html
compositing/fixed-position-changed-within-composited-parent-layer.html
To be able to properly skip repainting after a positioned movement layout only, we
needed to add more state to the current |setNeedsFullRepaint| method. As part of that
we refactored the callers and internal fields to better match the new meaning.
- rendering/RenderBoxModelObject.cpp:
(WebCore::RenderBoxModelObject::styleDidChange):
Explicitely gave the RepaintStatus to setRepaintStatus.
- rendering/RenderLayer.cpp:
(WebCore::RenderLayer::RenderLayer):
(WebCore::RenderLayer::removeOnlyThisLayer):
Updated those function after the renamings.
(WebCore::RenderLayer::updateLayerPositions):
Ditto. Also added a sholdRepaintAfterLayout check.
(WebCore::RenderLayer::shouldRepaintAfterLayout):
Heart of the optimization, if we just did a positioned movement layout of composited RenderLayer,
then don't repaint. All the other cases should still trigger a repaint.
- rendering/RenderLayer.h:
(WebCore::RenderLayer::setRepaintStatus):
Renamed setNeedsFullRepaint to setRepaintStatus. Also added a new enum RepaintStatus.
- rendering/RenderObject.cpp:
(WebCore::RenderObject::setLayerNeedsFullRepaint):
Updated after the renamings.
(WebCore::RenderObject::setLayerNeedsFullRepaintForPositionedMovementLayout):
New method that pass a new value to the RenderLayer.
- rendering/RenderObject.h:
(WebCore::RenderObject::setNeedsPositionedMovementLayout):
Switched the call to the dedicated method.
LayoutTests:
I did not find any test covering positioned movement layout with composited layers
so I added some testing.
- compositing/absolute-position-changed-in-composited-layer-expected.png: Added.
- compositing/absolute-position-changed-in-composited-layer-expected.txt: Added.
- compositing/absolute-position-changed-in-composited-layer.html: Added.
- compositing/absolute-position-changed-with-composited-parent-layer-expected.png: Added.
- compositing/absolute-position-changed-with-composited-parent-layer-expected.txt: Added.
- compositing/absolute-position-changed-with-composited-parent-layer.html: Added.
- compositing/fixed-position-changed-in-composited-layer-expected.png: Added.
- compositing/fixed-position-changed-in-composited-layer-expected.txt: Added.
- compositing/fixed-position-changed-in-composited-layer.html: Added.
- compositing/fixed-position-changed-within-composited-parent-layer-expected.png: Added.
- compositing/fixed-position-changed-within-composited-parent-layer-expected.txt: Added.
- compositing/fixed-position-changed-within-composited-parent-layer.html: Added.
- 9:53 AM Changeset in webkit [102951] by
-
- 2 edits in trunk/Source/WebCore
Don't invoke CSSStyleSelector::pushParent before Text::recalcTextStyle
https://bugs.webkit.org/show_bug.cgi?id=74575
Reviewed by Darin Adler.
Text::recalcTextStyle never enters the style selector so pushing the state is not necessary
- dom/Element.cpp:
(WebCore::Element::recalcStyle):
- 9:50 AM Changeset in webkit [102950] by
-
- 10 edits in trunk
[chromium] Add DRT support for WebKitPageCacheSupportsPluginsPreferenceKey
https://bugs.webkit.org/show_bug.cgi?id=74581
Reviewed by Darin Fisher.
Source/WebKit/chromium:
- public/WebSettings.h:
- src/WebSettingsImpl.cpp:
(WebKit::WebSettingsImpl::setPageCacheSupportsPlugins):
- src/WebSettingsImpl.h:
Tools:
- DumpRenderTree/chromium/LayoutTestController.cpp:
(LayoutTestController::overridePreference):
- DumpRenderTree/chromium/WebPreferences.cpp:
(WebPreferences::reset):
(WebPreferences::applyTo):
- DumpRenderTree/chromium/WebPreferences.h:
LayoutTests:
Unskip one test which now passes. The other one will continue to
be covered under the other bug.
- platform/chromium/test_expectations.txt:
- 9:49 AM WebKitGTK/1.6.x edited by
- (diff)
- 9:33 AM Changeset in webkit [102949] by
-
- 2 edits in trunk/Source/WebKit
Patch by Adam Treat <atreat@rim.com> on 2011-12-15
Reviewed by Rob Buis.
https://bugs.webkit.org/show_bug.cgi?id=74609
PR 122703
For certain configurations of webpage content and zoom level we were
failing to produce a valid backingstore matrix by being to strict on
whether a given matrix fits the preferred matrix orientation.
This patch fixes this by insisting on storing a candidate divisor
whether or not it agrees with the preferred matrix orientation and then
comparing all subsequent divisors.
- blackberry/Api/BackingStore.cpp:
(BlackBerry::WebKit::divisorIsPerfectWidth):
(BlackBerry::WebKit::divisorIsPerfectHeight):
(BlackBerry::WebKit::divisorIsPreferredDirection):
(BlackBerry::WebKit::bestDivisor):
- 9:21 AM Changeset in webkit [102948] by
-
- 5 edits in trunk/Source/WebKit2
[Qt][WK2] Move WebPreferences into experimental
https://bugs.webkit.org/show_bug.cgi?id=74404
Patch by Rafael Brandao <rafael.lobo@openbossa.org> on 2011-12-15
Reviewed by Tor Arne Vestbø.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewExperimental::preferences):
- UIProcess/API/qt/qquickwebview_p.h:
- UIProcess/API/qt/tests/qmltests/DesktopBehavior/tst_messaging.qml:
- UIProcess/API/qt/tests/qmltests/WebView/tst_preferences.qml:
- 9:09 AM Changeset in webkit [102947] by
-
- 1 edit in trunk/Source/WebCore/ChangeLog
Fixed error in Target.pri.
Unreviewed.
- Target.pri:
- 9:09 AM Changeset in webkit [102946] by
-
- 2 edits in trunk/Source/WebCore
Fixed error in Target.pri.
Unreviewed.
- Target.pri:
- 8:58 AM Changeset in webkit [102945] by
-
- 1 edit in branches/subpixellayout/Source/WebCore/rendering/RenderLayer.cpp
Correcting positioning of scrollbars to use pixelSnapped logic instead of enclosingIntRect
- 8:55 AM Changeset in webkit [102944] by
-
- 23 edits in branches/subpixellayout/Source/WebCore
- Changing Renderer offsetLeft/Top/Width/Height to be LayoutUnits. Adding pixelSnapped versions as well.
- Changing AppUnit version of adjustForAbsoluteZoom to return an int and behave like the int version. This is needed to get zoomed values to read back properly.
- Moved snapSizeToPixel to AppUnit.h.
- 8:46 AM Changeset in webkit [102943] by
-
- 7 edits in trunk
Web Inspector: #hex colors are not highlighted in CSS files
https://bugs.webkit.org/show_bug.cgi?id=74570
Reviewed by Pavel Feldman.
Source/WebCore:
Drive by: highlight color keywords as colors, not as keywords.
- inspector/front-end/CSSKeywordCompletions.js:
(WebInspector.CSSKeywordCompletions.colors):
- inspector/front-end/SourceCSSTokenizer.js:
(WebInspector.SourceCSSTokenizer):
(WebInspector.SourceCSSTokenizer.prototype.nextToken):
- inspector/front-end/SourceCSSTokenizer.re2js:
LayoutTests:
- inspector/syntax-highlight-css-expected.txt:
- inspector/syntax-highlight-css.html:
- 8:42 AM Changeset in webkit [102942] by
-
- 7 edits4 moves in trunk/Source/WebCore
Hardware acceleration of W3C Filter Effects
https://bugs.webkit.org/show_bug.cgi?id=68479
Reviewed by Simon Fraser.
Move FilterOperation(s) to platform/graphics/filters so it can be used to pass filter information
down to GraphicsLayer for hardware acceleration. This leaves the CustomFilterOperation subclass in
rendering/style since it has dependencies outside platform. Some part of that class will
eventually need to be down in platform.
- 8:40 AM Changeset in webkit [102941] by
-
- 2 edits in trunk/Tools
[Qt] Improve the look of the viewport info overlay
Reviewed by Tor Arne Vestbø.
- MiniBrowser/qt/qml/ViewportInfoItem.qml:
- 8:40 AM Changeset in webkit [102940] by
-
- 4 edits1 copy in trunk/LayoutTests
Unreviewed test expectations fix.
- http/tests/inspector/console-resource-errors-expected.txt:
- http/tests/inspector/console-xhr-logging-expected.txt:
- platform/chromium/http/tests/inspector/console-xhr-logging-expected.txt: Copied from LayoutTests/http/tests/inspector/console-xhr-logging-expected.txt.
- platform/qt/Skipped:
- 8:27 AM Changeset in webkit [102939] by
-
- 8 edits in trunk
[Qt] Support requestAnimationFrame API
https://bugs.webkit.org/show_bug.cgi?id=74528
Source/JavaScriptCore:
Let Qt port use REQUEST_ANIMATION_FRAME_TIMER.
Reviewed by Kenneth Rohde Christiansen.
- wtf/Platform.h:
Source/WebCore:
Add necessary files to Target.pri when enabling requestAnimationFrame option.
Reviewed by Kenneth Rohde Christiansen.
- Target.pri:
Tools:
Add build-option for requestAnimationFrame feature.
Reviewed by Kenneth Rohde Christiansen.
- qmake/mkspecs/features/features.prf:
LayoutTests:
Enable requestAnimationFrame tests.
Reviewed by Kenneth Rohde Christiansen.
- platform/qt/Skipped:
- 8:21 AM Changeset in webkit [102938] by
-
- 3 edits in trunk/LayoutTests
[Qt] Unreviewed gardening.
- platform/qt/Skipped: Skip new failing tests (regressions).
- platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: Updated after r102918.
- 7:53 AM Changeset in webkit [102937] by
-
- 3 edits in trunk/Source/WebCore
Removing BlackBerryCookieCache from the build system
https://bugs.webkit.org/show_bug.cgi?id=74318
Patch by Otto Cheung <ocheung@rim.com> on 2011-12-15
Reviewed by Rob Buis.
Removing any references to BlackBerryCookieCache in files that are upstreamed.
We are removing the BlackBerryCookieCache because the CookieManager cookie structure has been
refactored to have a similar structure to the cache. Since the read speeds in both structures
are similar, we no longer need the cache to speed up read performance.
No new tests, this patch by itself will not work. This patch is only removing
the references to BlackBerryCookieCache in files that are upstreamed.
- PlatformBlackBerry.cmake:
- platform/network/blackberry/NetworkJob.cpp:
(WebCore::NetworkJob::handleNotifyHeaderReceived):
- 7:36 AM Changeset in webkit [102936] by
-
- 2 edits in trunk
Web Inspector: [Chromium] Call LowMemoryNotification instead of IdleNotification
https://bugs.webkit.org/show_bug.cgi?id=71821
Patch by Ulan Degenbaev <ulan@chromium.org> on 2011-12-15
Reviewed by Yury Semikhatsky.
- Source/WebCore/bindings/v8/ScriptProfiler.cpp:
- 7:11 AM Changeset in webkit [102935] by
-
- 12 edits1 copy2 adds in trunk/Source/WebKit2
[GTK] Add WebKitWindowProperties to WebKit2 GTK+ API
https://bugs.webkit.org/show_bug.cgi?id=74595
Reviewed by Gustavo Noronha Silva.
- GNUmakefile.am: Add new files to compilation.
- UIProcess/API/gtk/WebKitUIClient.cpp:
(createNewPage): Pass the dictionary containing the window
features to webkitWebViewCreateNewPage().
(toolbarsAreVisible): Return
WebKitWindowProperties:toolbar-visible.
(setToolbarsAreVisible): Set
WebKitWindowProperties:toolbar-visible.
(menuBarIsVisible): Return WebKitWindowProperties:menu-visible.
(setMenuBarIsVisible): Set WebKitWindowProperties:menu-visible.
(statusBarIsVisible): Return
WebKitWindowProperties:status-visible.
(setStatusBarIsVisible): Set
WebKitWindowProperties:status-visible.
(isResizable): Return WebKitWindowProperties:resizable.
(setIsResizable): Set WebKitWindowProperties:resizable.
(getWindowFrame): Return WebKitWindowProperties:geometry.
(setWindowFrame): Set WebKitWindowProperties:geometry.
(webkitUIClientAttachUIClientToPage): Initialize the UI client for
the given page.
- UIProcess/API/gtk/WebKitWebView.cpp:
(webkit_web_view_init): Create a WebKitWindowProperties object for
the view.
(webkit_web_view_class_init):
(webkitWebViewCreateNewPage): Update the WebKitWindowProperties
object using the window features dictionary.
(webkit_web_view_get_window_properties): Return the
WebKitWindowProperties object of the view.
- UIProcess/API/gtk/WebKitWebView.h:
- UIProcess/API/gtk/WebKitWebViewPrivate.h:
- UIProcess/API/gtk/WebKitWindowProperties.cpp: Added.
(webkitWindowPropertiesFinalize):
(webkitWindowPropertiesGetProperty):
(webkitWindowPropertiesSetProperty):
(webkit_window_properties_class_init):
(webkit_window_properties_init):
(webkitWindowPropertiesCreate): Create a new
WebKitWindowProperties object.
(webkitWindowPropertiesSetGeometry):
(webkitWindowPropertiesSetToolbarVisible):
(webkitWindowPropertiesSetMenubarVisible):
(webkitWindowPropertiesSetStatusbarVisible):
(webkitWindowPropertiesSetLocationbarVisible):
(webkitWindowPropertiesSetScrollbarsVisible):
(webkitWindowPropertiesSetResizable):
(webkitWindowPropertiesSetFullscreen):
(webkitWindowPropertiesUpdateFromWKWindowFeatures): Parse the
window features dictionary and update the WebKitWindowProperties
object accordingly.
(webkit_window_properties_get_geometry):
(webkit_window_properties_get_toolbar_visible):
(webkit_window_properties_get_statusbar_visible):
(webkit_window_properties_get_scrollbars_visible):
(webkit_window_properties_get_menubar_visible):
(webkit_window_properties_get_locationbar_visible):
(webkit_window_properties_get_resizable):
(webkit_window_properties_get_fullscreen):
- UIProcess/API/gtk/WebKitWindowProperties.h: Added.
- UIProcess/API/gtk/WebKitWindowPropertiesPrivate.h: Copied from Source/WebKit2/UIProcess/API/gtk/WebKitWebViewPrivate.h.
- UIProcess/API/gtk/docs/webkit2gtk-docs.sgml: Add new section for
WebKitWindowProperties.
- UIProcess/API/gtk/docs/webkit2gtk-sections.txt: Add new symbols.
- UIProcess/API/gtk/docs/webkit2gtk.types: Add
webkit_window_properties_get_type.
- UIProcess/API/gtk/tests/TestWebKitWebView.cpp:
(WindowProperties::windowPropertiesNotifyCallback):
(WindowProperties::viewReadyToShow):
(WindowProperties::viewCreate):
(WindowProperties::setExpectedWindowProperties):
(testWebViewWindowProperties):
(beforeAll):
- UIProcess/API/gtk/webkit2.h: Include WebKitWindowProperties.h.
- UIProcess/WebUIClient.cpp:
(WebKit::WebUIClient::createNewPage): Add also "locationBarVisible"
to the window features dictionary.
- 6:59 AM Changeset in webkit [102934] by
-
- 2 edits in trunk/Source/WebCore
[Qt] Mobile theme improvements
Rubberstamped by Simon Hausmann.
- Invert the gradient on the checkboxes
- Make the buttons on the multi select combobox work on floats
- Mini cleanups
- platform/qt/RenderThemeQtMobile.cpp:
(WebCore::StylePainterMobile::drawCheckableBackground):
(WebCore::StylePainterMobile::drawMultipleComboButton):
(WebCore::StylePainterMobile::getButtonImageSize):
(WebCore::StylePainterMobile::drawComboBox):
- 6:19 AM Changeset in webkit [102933] by
-
- 2 edits in trunk/Source/WebCore
Web Inspector: CodeGeneratorInspector.py convert script conditions to precompiler #ifs
https://bugs.webkit.org/show_bug.cgi?id=74534
Patch by Peter Rybin <peter.rybin@gmail.com> on 2011-12-15
Reviewed by Pavel Feldman.
Generator is rewritten to add #if's to output.
- inspector/CodeGeneratorInspector.py:
(DomainNameFixes.get_fixed_data.Res.get_guard.Guard.generate_open):
(DomainNameFixes.get_fixed_data.Res.get_guard.Guard):
(DomainNameFixes.get_fixed_data.Res.get_guard.Guard.generate_close):
(DomainNameFixes.get_fixed_data.Res):
(DomainNameFixes.get_fixed_data.Res.get_guard):
(Generator.go):
(Generator.process_event):
(Generator.process_command):
(Generator.process_types):
- 6:09 AM Changeset in webkit [102932] by
-
- 14 edits2 deletes in trunk/Source/WebKit2
[Qt] [WK2] Remove QtWebPageProxy
https://bugs.webkit.org/show_bug.cgi?id=74540
Reviewed by Kenneth Rohde Christiansen.
Move WebPageProxy* to QQuickWebViewPrivate. The remaining functions in
QtWebPageProxy were simple wrappers to WebKit functionality (text zoom, page zoom
and user agent setting). Since those wrappers are unused, they were removed. The
signal in the class was also unused.
This patch also remove the code from WebContextMenuProxyQt, it was remains of a
previous QMenu-based implementation. We want to rewrite this code for QML anyway,
so I reverted to an empty state.
Farewell, QtWebPageProxy!
- Target.pri:
- UIProcess/API/qt/qquickwebpage.cpp:
- UIProcess/API/qt/qquickwebpage_p.h:
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::~QQuickWebViewPrivate):
(QQuickWebViewPrivate::initialize):
(QQuickWebViewPrivate::processDidCrash):
(QQuickWebViewPrivate::createDrawingAreaProxy):
(QQuickWebViewPrivate::updateVisibleContentRectAndScale):
(QQuickWebViewPrivate::_q_viewportTrajectoryVectorChanged):
(QQuickWebViewPrivate::_q_onVisibleChanged):
(QQuickWebViewPrivate::updateViewportSize):
(QQuickWebViewPrivate::computeViewportConstraints):
(QQuickWebViewPrivate::setUseTraditionalDesktopBehaviour):
(QQuickWebViewPrivate::setNavigatorQtObjectEnabled):
(QQuickWebViewExperimental::postMessage):
(QQuickWebView::load):
(QQuickWebView::goBack):
(QQuickWebView::goForward):
(QQuickWebView::stop):
(QQuickWebView::reload):
(QQuickWebView::url):
(QQuickWebView::canGoBack):
(QQuickWebView::canGoForward):
(QQuickWebView::loading):
(QQuickWebView::canReload):
(QQuickWebView::title):
(QQuickWebView::pageRef):
(QQuickWebView::loadHtml):
- UIProcess/API/qt/qquickwebview_p.h:
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/API/qt/qwebnavigationhistory_p_p.h:
- UIProcess/API/qt/qwebpreferences.cpp:
(QWebPreferencesPrivate::preferencesRef):
- UIProcess/PageClient.h:
- UIProcess/qt/QtPageClient.cpp:
(QtPageClient::QtPageClient):
(QtPageClient::initialize):
(QtPageClient::createPopupMenuProxy):
(QtPageClient::createContextMenuProxy):
- UIProcess/qt/QtPageClient.h:
- UIProcess/qt/QtWebPageProxy.cpp: Removed.
- UIProcess/qt/QtWebPageProxy.h: Removed.
- UIProcess/qt/WebContextMenuProxyQt.cpp:
(WebKit::WebContextMenuProxyQt::WebContextMenuProxyQt):
(WebKit::WebContextMenuProxyQt::create):
(WebKit::WebContextMenuProxyQt::showContextMenu):
(WebKit::WebContextMenuProxyQt::hideContextMenu):
- UIProcess/qt/WebContextMenuProxyQt.h:
- 5:45 AM Changeset in webkit [102931] by
-
- 2 edits in trunk/Source/JavaScriptCore
Minor refactor to Parser::parseTryStatement
https://bugs.webkit.org/show_bug.cgi?id=74507
Patch by Andy Wingo <wingo@igalia.com> on 2011-12-15
Reviewed by Geoffrey Garen.
- parser/Parser.cpp (JSC::Parser::parseTryStatement): Use the
Parser's declareVariable instead of going directly to the scope.
This will facilitate future checks related to harmony block
scoping.
- 5:36 AM Changeset in webkit [102930] by
-
- 1 edit1 add in trunk/LayoutTests
Unreviewed chromium test rebaseline.
- platform/chromium/http/tests/inspector/network/script-as-text-loading-expected.txt: Added.
- 5:32 AM Changeset in webkit [102929] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, GTK rebaseline.
- platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
- 5:26 AM Changeset in webkit [102928] by
-
- 2 edits in trunk/Source/WebKit/chromium
Web Inspector: [Chromium] add support to inspector test suite to fetch test execution results from console
https://bugs.webkit.org/show_bug.cgi?id=74208
Reviewed by Yury Semikhatsky.
This adds waitForTestResultsInConsole, a test suite method that monitors console for a message containing
either PASS or FAIL and sets result accordingly. This is used by tests running in the extension context to
communicate test results to the test driver (see devtools_sanity_unittest.cc for an example).
- src/js/Tests.js:
(.TestSuite.prototype.testWaitForResultsInConsole.onConsoleMessage):
(.TestSuite.prototype.testWaitForResultsInConsole):
- 5:19 AM Changeset in webkit [102927] by
-
- 2 edits in trunk/Source/WebKit2
[WK2] Eliminate unnecessary GTK/QT ifdefs for shared memory implementation
https://bugs.webkit.org/show_bug.cgi?id=74602
Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2011-12-15
Reviewed by Kenneth Rohde Christiansen.
For shared memory Qt was using shm_open, Gtk was using files in /tmp. There
is no reason to obfuscate the code with #ifdefs or let Gtk use an inferior
method of opening shared memory. So this patch makes SharedMemoryUnix.cpp
truly Qt and Gtk independent.
- Platform/unix/SharedMemoryUnix.cpp:
(WebKit::SharedMemory::create):
- 5:18 AM Changeset in webkit [102926] by
-
- 2 edits in trunk/Source/WebCore
[Qt][WK2] Setting Download as action for navigation request crashes WebProcess
https://bugs.webkit.org/show_bug.cgi?id=74526
Reviewed by Simon Hausmann.
Adding checks for networkcontext and networkAccessManager
and return true in case they don't exist, following the same
logic as if the CookieJar doesn't exist.
- platform/qt/ThirdPartyCookiesQt.cpp:
(WebCore::thirdPartyCookiePolicyPermits):
- 5:16 AM Changeset in webkit [102925] by
-
- 4 edits in trunk
[Qt] Don't add WebCoreSupport and WebKit APIs to include WebCore's include path
Reviewed Simon Hausmann.
- 5:04 AM Changeset in webkit [102924] by
-
- 2 edits in trunk/Source/WebKit2
[Qt] Cleanup: Remove unnecessary const_cast
Reviewed by Kenneth Christiansen.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebView::preferences):
- 4:40 AM Changeset in webkit [102923] by
-
- 5 edits in trunk/Source
[Qt] Get rid of layering violation in PluginViewQt
PluginViewQt has a layering violation in relying on QWebPagePrivate for
the check if running under DRT. We remove this and add a specific flag
in the PluginView for this check, enabled from DRTSupport. This isn't
pretty, but an improvement over what's currently there.
Reviewed by Simon Hausmann.
- 4:38 AM Changeset in webkit [102922] by
-
- 14 edits4 adds in trunk
[QT][WK2]Add (experimental) viewport info view to Minibrowser/qt.
https://bugs.webkit.org/show_bug.cgi?id=72893
Patch by Michael Brüning <michael.bruning@nokia.com> on 2011-12-15
Reviewed by Kenneth Rohde Christiansen.
This patch extends QQuickWebViewExperimental by a property named
viewportInfo, which contains the viewport scalability and
layout and contents size information. This property is exposed to
QML through the experimental extension for QQuickWebView.
.:
- Source/qtwebkit-export.map:
Source/WebKit/qt:
- declarative/experimental/plugin.cpp:
Source/WebKit2:
- Target.pri:
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::didChangeContentsSize):
(QQuickWebViewPrivate::computeViewportConstraints):
(QQuickWebViewPrivate::PostTransitionState::apply): Added applying
contentsSize to viewportInfo.
(QQuickWebViewExperimental::QQuickWebViewExperimental):
(QQuickWebViewExperimental::viewportInfo):
- UIProcess/API/qt/qquickwebview_p.h:
- UIProcess/API/qt/qquickwebview_p_p.h: Moved PostTransitionState::apply
to qquickwebview.cpp. Added friend QWebViewportInfo.
- UIProcess/API/qt/qwebviewportinfo.cpp: Added.
(QWebViewportInfo::QWebViewportInfo):
(QWebViewportInfo::~QWebViewportInfo):
(QWebViewportInfo::contentsSize):
(QWebViewportInfo::currentScale):
(QWebViewportInfo::devicePixelRatio):
(QWebViewportInfo::initialScale):
(QWebViewportInfo::minimumScale):
(QWebViewportInfo::maximumScale):
(QWebViewportInfo::isScalable):
(QWebViewportInfo::layoutSize):
(QWebViewportInfo::didUpdateContentsSize):
(QWebViewportInfo::didUpdateCurrentScale):
(QWebViewportInfo::didUpdateViewportConstraints):
- UIProcess/API/qt/qwebviewportinfo_p.h: Added.
- UIProcess/qt/QtViewportInteractionEngine.h:
(WebKit::QtViewportInteractionEngine::Constraints::Constraints): Added layoutSize.
(WebKit::QtViewportInteractionEngine::constraints): Added property to access m_contraints.
Tools:
- MiniBrowser/qt/MiniBrowser.pro:
- MiniBrowser/qt/MiniBrowser.qrc:
- MiniBrowser/qt/icons/info.png: Added.
- MiniBrowser/qt/qml/BrowserWindow.qml:
- MiniBrowser/qt/qml/ViewportInfoItem.qml: Added.
- 4:35 AM Changeset in webkit [102921] by
-
- 2 edits in trunk/Source/WebKit/chromium
[Chromium] Enable TestNetscapePlugIn to link for Android
https://bugs.webkit.org/show_bug.cgi?id=74597
Reviewed by Tony Gentilcore.
The -nostdlib linker flag is being passed to all targets being build
for Android, which conflicts with the shared library the
TestNetscapePlugIn target created. Explicitly exclude the flag.
- WebKit.gyp:
- 4:31 AM Changeset in webkit [102920] by
-
- 2 edits in trunk/Source/WebKit2
[WK2] WebPage::m_useFixedLayout variable unininitialized
https://bugs.webkit.org/show_bug.cgi?id=74596
Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2011-12-15
Reviewed by Kenneth Rohde Christiansen.
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::WebPage): Avoid uninitialized use through
initialization in the constructor.
- 4:16 AM Changeset in webkit [102919] by
-
- 6 edits in trunk
Web Inspector: Console should show network messages origins.
https://bugs.webkit.org/show_bug.cgi?id=74521
Reviewed by Pavel Feldman.
Source/WebCore:
- inspector/front-end/ConsoleMessage.js:
(WebInspector.ConsoleMessageImpl.prototype._formatMessage):
LayoutTests:
- http/tests/inspector/console-resource-errors-expected.txt:
- http/tests/inspector/console-xhr-logging-expected.txt:
- platform/chromium/http/tests/inspector/console-resource-errors-expected.txt:
- 4:02 AM Changeset in webkit [102918] by
-
- 4 edits2 adds in trunk
"user-select none" causes selection to incorrectly escape from clicked container
https://bugs.webkit.org/show_bug.cgi?id=57289
Patch by Rakesh KN <rakesh.kn@motorola.com> on 2011-12-15
Reviewed by Ryosuke Niwa.
Source/WebCore:
Not selecting the nearest word from the target node if target node has -webkit-user-select:none
Test: fast/events/mouse-double-triple-click-should-not-select-next-node-for-user-select-none.html
- page/EventHandler.cpp:
(WebCore::EventHandler::updateSelectionForMouseDownDispatchingSelectStart):
If target node has webkit-user-select:none style then do not update the selection.
LayoutTests:
- fast/events/mouse-double-triple-click-should-not-select-next-node-for-user-select-none-expected.txt: Added.
- fast/events/mouse-double-triple-click-should-not-select-next-node-for-user-select-none.html: Added.
- fast/js/resources/js-test-pre.js:
(shouldNotBe):
Added new helper function to check for inequality.
- 4:01 AM Changeset in webkit [102917] by
-
- 22 edits2 moves in trunk/Source/JavaScriptCore
Rename JSC::Heuristics to JSC::Options
https://bugs.webkit.org/show_bug.cgi?id=72889
Patch by Andy Wingo <wingo@igalia.com> on 2011-12-15
Reviewed by Filip Pizlo.
- runtime/Options.cpp: Renamed from Source/JavaScriptCore/runtime/Heuristics.cpp.
- runtime/Options.h: Renamed from Source/JavaScriptCore/runtime/Heuristics.h.
- CMakeLists.txt:
- GNUmakefile.list.am:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
- JavaScriptCore.xcodeproj/project.pbxproj:
- Target.pri:
- bytecode/CodeBlock.cpp:
(JSC::CodeBlock::shouldOptimizeNow):
- bytecode/CodeBlock.h:
(JSC::CodeBlock::likelyToTakeSlowCase):
(JSC::CodeBlock::couldTakeSlowCase):
(JSC::CodeBlock::likelyToTakeSpecialFastCase):
(JSC::CodeBlock::likelyToTakeDeepestSlowCase):
(JSC::CodeBlock::likelyToTakeAnySlowCase):
(JSC::CodeBlock::reoptimizationRetryCounter):
(JSC::CodeBlock::countReoptimization):
(JSC::CodeBlock::counterValueForOptimizeAfterWarmUp):
(JSC::CodeBlock::counterValueForOptimizeAfterLongWarmUp):
(JSC::CodeBlock::optimizeNextInvocation):
(JSC::CodeBlock::dontOptimizeAnytimeSoon):
(JSC::CodeBlock::optimizeSoon):
(JSC::CodeBlock::largeFailCountThreshold):
(JSC::CodeBlock::largeFailCountThresholdForLoop):
(JSC::CodeBlock::shouldReoptimizeNow):
(JSC::CodeBlock::shouldReoptimizeFromLoopNow):
- dfg/DFGByteCodeParser.cpp:
(JSC::DFG::ByteCodeParser::handleInlining):
- dfg/DFGCapabilities.h:
(JSC::DFG::mightCompileEval):
(JSC::DFG::mightCompileProgram):
(JSC::DFG::mightCompileFunctionForCall):
(JSC::DFG::mightCompileFunctionForConstruct):
(JSC::DFG::mightInlineFunctionForCall):
(JSC::DFG::mightInlineFunctionForConstruct):
- dfg/DFGOSRExit.cpp:
(JSC::DFG::OSRExit::considerAddingAsFrequentExitSiteSlow):
- dfg/DFGOSRExitCompiler32_64.cpp:
(JSC::DFG::OSRExitCompiler::compileExit):
- dfg/DFGOSRExitCompiler64.cpp:
(JSC::DFG::OSRExitCompiler::compileExit):
- dfg/DFGVariableAccessData.h:
(JSC::DFG::VariableAccessData::shouldUseDoubleFormatAccordingToVote):
- heap/MarkStack.cpp:
(JSC::MarkStackSegmentAllocator::allocate):
(JSC::MarkStackSegmentAllocator::shrinkReserve):
(JSC::MarkStackArray::MarkStackArray):
(JSC::MarkStackArray::donateSomeCellsTo):
(JSC::MarkStackArray::stealSomeCellsFrom):
(JSC::MarkStackThreadSharedData::MarkStackThreadSharedData):
(JSC::SlotVisitor::donateSlow):
(JSC::SlotVisitor::drain):
(JSC::SlotVisitor::drainFromShared):
- heap/MarkStack.h:
(JSC::MarkStack::mergeOpaqueRootsIfProfitable):
(JSC::MarkStack::addOpaqueRoot):
(JSC::MarkStackArray::canDonateSomeCells):
- heap/SlotVisitor.h:
(JSC::SlotVisitor::donate):
- jit/JIT.cpp:
(JSC::JIT::emitOptimizationCheck):
- runtime/InitializeThreading.cpp:
(JSC::initializeThreadingOnce): Adapt callers and build systems.
- testRegExp.cpp:
(CommandLine::CommandLine):
- jsc.cpp:
(CommandLine::CommandLine):
Rename from Options, to avoid name conflict.
- 3:58 AM Changeset in webkit [102916] by
-
- 17 edits in trunk
Web Inspector: Generated HAR is missing pages.startedDateTime
https://bugs.webkit.org/show_bug.cgi?id=74188
Reviewed by Pavel Feldman.
Source/WebCore:
- inspector/front-end/HAREntry.js:
(WebInspector.HARLog.prototype._buildPages):
- inspector/front-end/NetworkLog.js:
(WebInspector.NetworkLog):
(WebInspector.NetworkLog.prototype.get mainResourceStartTime):
(WebInspector.NetworkLog.prototype._mainFrameNavigated):
- inspector/front-end/NetworkPanel.js:
(WebInspector.NetworkLogView.prototype._updateSummaryBar):
LayoutTests:
- http/tests/inspector/inspector-test.js:
(initialize_InspectorTest.InspectorTest.formatRecentTime):
(initialize_InspectorTest.InspectorTest.addObject):
- http/tests/inspector/resource-har-conversion-expected.txt:
- http/tests/inspector/resource-parameters-expected.txt:
- http/tests/inspector/resources-test.js:
- platform/chromium/http/tests/inspector/resource-har-conversion-expected.txt:
- platform/mac-snowleopard/http/tests/inspector/resource-har-conversion-expected.txt:
- 3:57 AM Changeset in webkit [102915] by
-
- 16 edits3 adds in trunk
Supports Unicode variation selector
https://bugs.webkit.org/show_bug.cgi?id=50999
Reviewed by Nikolas Zimmermann.
Source/WebCore:
Adds SimpleFontData::updateGlyphWithVariationSelector() which substitutes the
glyph in question based on the selector. WidthIterator::advance() calls it
when an unicode variation selector follows the character.
Test: fast/text/unicode-variation-selector.html
- platform/graphics/SimpleFontData.h: Added updateGlyphWithVariationSelector().
- platform/graphics/SurrogatePairAwareTextIterator.cpp:
(WebCore::isUnicodeBMPVariationSelector): Added.
(WebCore::isUnicodeSupplementaryVariationSelector): Added.
(WebCore::SurrogatePairAwareTextIterator::hasTrailingVariationSelector): Added.
- platform/graphics/SurrogatePairAwareTextIterator.h:
- platform/graphics/WidthIterator.cpp:
(WebCore::WidthIterator::advance): Changed to detect variation selectors.
- platform/graphics/chromium/SimpleFontDataChromiumWin.cpp:
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Added.
- platform/graphics/chromium/SimpleFontDataLinux.cpp:
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Ditto.
- platform/graphics/freetype/SimpleFontDataFreeType.cpp:
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Ditto.
- platform/graphics/mac/SimpleFontDataMac.mm:
(WebCore::decomposeToUTF16): Ditto.
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Ditto.
- platform/graphics/pango/SimpleFontDataPango.cpp:
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Ditto.
- platform/graphics/qt/SimpleFontDataQt.cpp:
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Ditto.
- platform/graphics/win/SimpleFontDataWin.cpp:
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Ditto.
- platform/graphics/wince/SimpleFontDataWinCE.cpp:
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Ditto.
- platform/graphics/wx/SimpleFontDataWx.cpp:
(WebCore::SimpleFontData::updateGlyphWithVariationSelector): Ditto.
LayoutTests:
Add test for unicode variation selector support.
A tiny font (gw432047.ttf), which comes from glyphwiki.org and is used by Mozilla, is added for the test.
- fast/text/resources/gw432047-license.txt: Added.
- fast/text/resources/gw432047.ttf: Added.
- fast/text/unicode-variation-selector.html: Added.
- platform/chromium/test_expectations.txt: Added fast/text/unicode-variation-selector.html. This test need rebaseline.
- 3:44 AM Changeset in webkit [102914] by
-
- 2 edits in trunk/Tools
[chromium] WebViewHost::requestCheckingOfText should return immediately if text is empty.
https://bugs.webkit.org/show_bug.cgi?id=74586
Patch by Shinya Kawanaka <shinyak@google.com> on 2011-12-15
Reviewed by Hajime Morita.
No new tests. Covered by existing tests.
- DumpRenderTree/chromium/WebViewHost.cpp:
(WebViewHost::requestCheckingOfText):
Returns immediately if text is empty.
- 3:21 AM Changeset in webkit [102913] by
-
- 3 edits2 adds in trunk
[v8] Expose the "filter" property in V8CSSStyleDeclaration
https://bugs.webkit.org/show_bug.cgi?id=73426
Source/WebCore:
Reviewed by Adam Barth.
Test: fast/css/style-enumerate-properties.html
The "filter" CSS property used to be masked to be compliant with JSC, but JSC has supported
this property for quite a while.
- bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp:
(WebCore::hasCSSPropertyNamePrefix): clean up WTF prefixes
(WebCore::cssPropertyInfo): remove the "wasFilter" flag
(WebCore::V8CSSStyleDeclaration::namedPropertyEnumerator): remove the "filter" check
(WebCore::V8CSSStyleDeclaration::namedPropertyGetter): return the "filter" value as v8String
LayoutTests:
The original version of this test should have landed in r102578 but was lost
during the "revert-reland" cycle.
Reviewed by Adam Barth.
- fast/css/style-enumerate-properties-expected.txt: Added.
- fast/css/style-enumerate-properties.html: Added.
- 2:58 AM Changeset in webkit [102912] by
-
- 3 edits in trunk/Source/WebKit/qt
[Qt] Remove unnecessary methods and members from DeviceOrientationClientQt
https://bugs.webkit.org/show_bug.cgi?id=74588
Patch by Alexander Færøy <ahf@0x90.dk> on 2011-12-15
Reviewed by Simon Hausmann.
Remove the unused method changeDeviceOrientation() from
DeviceOrientationClientQt and remove the DeviceOrientationController
member since it is unused.
- WebCoreSupport/DeviceOrientationClientQt.cpp:
(WebCore::DeviceOrientationClientQt::DeviceOrientationClientQt):
(WebCore::DeviceOrientationClientQt::setController):
- WebCoreSupport/DeviceOrientationClientQt.h:
- 2:58 AM Changeset in webkit [102911] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed build fix attempt for Chromium Mac.
- page/PerformanceTiming.h:
- 2:09 AM Changeset in webkit [102910] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed, build fix after r102906 (poor merge).
- inspector/front-end/ProfileView.js:
(WebInspector.CPUProfileType.prototype.buttonClicked):
- 2:06 AM Changeset in webkit [102909] by
-
- 2 edits in trunk/Source/WebKit2
[Qt] r102849 broke the Qt build on Mac OS X.
https://bugs.webkit.org/show_bug.cgi?id=74594
Patch by Alexander Færøy <ahf@0x90.dk> on 2011-12-15
Reviewed by Simon Hausmann.
The APPLE macro is defined on all standard OS X compilers, which
leads to various CoreGraphics headers to be included in the Qt build.
- config.h:
- 1:59 AM Changeset in webkit [102908] by
-
- 21 edits2 deletes in trunk
Unreviewed revert of r102696 ([Navigation Timing] Use monotonicallyIncreasingTime() instead of currentTime()).
Breaks inspector's network panel timeline on chromium.
Source/WebCore:
- CMakeLists.txt:
- GNUmakefile.list.am:
- Target.pri:
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- dom/Document.cpp:
(WebCore::Document::setReadyState):
(WebCore::Document::finishedParsing):
- inspector/InspectorInstrumentation.cpp:
(WebCore::InspectorInstrumentation::didFinishLoadingImpl):
- inspector/InspectorResourceAgent.cpp:
(WebCore::buildObjectForTiming):
(WebCore::buildObjectForResourceResponse):
(WebCore::buildObjectForCachedResource):
(WebCore::InspectorResourceAgent::willSendRequest):
(WebCore::InspectorResourceAgent::didReceiveResponse):
(WebCore::InspectorResourceAgent::didLoadResourceFromMemoryCache):
- loader/DocumentLoadTiming.cpp: Removed.
- loader/DocumentLoadTiming.h:
(WebCore::DocumentLoadTiming::DocumentLoadTiming):
- loader/FrameLoader.cpp:
(WebCore::FrameLoader::stopLoading):
(WebCore::FrameLoader::commitProvisionalLoad):
(WebCore::FrameLoader::continueLoadAfterWillSubmitForm):
(WebCore::FrameLoader::loadProvisionalItemFromCachedPage):
- loader/MainResourceLoader.cpp:
(WebCore::MainResourceLoader::continueAfterNavigationPolicy):
(WebCore::MainResourceLoader::willSendRequest):
(WebCore::MainResourceLoader::didReceiveData):
(WebCore::MainResourceLoader::didFinishLoading):
(WebCore::MainResourceLoader::load):
- page/DOMWindow.cpp:
(WebCore::DOMWindow::dispatchLoadEvent):
(WebCore::DOMWindow::dispatchTimedEvent):
- page/DOMWindow.h:
- page/PerformanceNavigation.cpp:
(WebCore::PerformanceNavigation::redirectCount):
- page/PerformanceTiming.cpp:
(WebCore::getPossiblySkewedTimeInKnownRange):
(WebCore::PerformanceTiming::navigationStart):
(WebCore::PerformanceTiming::unloadEventStart):
(WebCore::PerformanceTiming::unloadEventEnd):
(WebCore::PerformanceTiming::redirectStart):
(WebCore::PerformanceTiming::redirectEnd):
(WebCore::PerformanceTiming::fetchStart):
(WebCore::PerformanceTiming::responseEnd):
(WebCore::PerformanceTiming::domLoading):
(WebCore::PerformanceTiming::domInteractive):
(WebCore::PerformanceTiming::domContentLoadedEventStart):
(WebCore::PerformanceTiming::domContentLoadedEventEnd):
(WebCore::PerformanceTiming::domComplete):
(WebCore::PerformanceTiming::loadEventStart):
(WebCore::PerformanceTiming::loadEventEnd):
(WebCore::PerformanceTiming::resourceLoadTimeRelativeToAbsolute):
- page/PerformanceTiming.h:
- platform/network/ResourceLoadTiming.cpp: Removed.
- platform/network/ResourceLoadTiming.h:
LayoutTests:
- fast/dom/script-tests/webtiming.js:
- 1:45 AM Changeset in webkit [102907] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed, fix Closure compiler warnings after r102905.
- inspector/front-end/CSSStyleModel.js: Add JSDoc annotations
- 1:37 AM Changeset in webkit [102906] by
-
- 5 edits in trunk/Source/WebCore
Web Inspector: make ProfilesPanel scale as the number of ProfileTypes grows
https://bugs.webkit.org/show_bug.cgi?id=74391
Reviewed by Pavel Feldman.
Whenever a profile is started, this change disables all profile recording buttons, except the one
that correponds to the running profile. Once the profiling is finished, all buttons get enabled back again.
- English.lproj/localizedStrings.js:
- inspector/front-end/ProfileView.js:
(WebInspector.CPUProfileView.profileCallback):
(WebInspector.CPUProfileType.prototype.get buttonTooltip):
(WebInspector.CPUProfileType.prototype.get buttonStyle):
(WebInspector.CPUProfileType.prototype.buttonClicked):
- inspector/front-end/ProfilesPanel.js:
(WebInspector.ProfilesPanel.prototype.get statusBarItems.clickHandler):
(WebInspector.ProfilesPanel.prototype.get statusBarItems):
(WebInspector.ProfilesPanel.prototype._addProfileHeader):
(WebInspector.ProfilesPanel.prototype.updateProfileTypeButtons):
(WebInspector.ProfilesPanel.prototype._updateInterface):
(WebInspector.ProfilesPanel.prototype.setRecordingProfile):
(WebInspector.ProfilesPanel.prototype.takeHeapSnapshot):
(WebInspector.ProfilesPanel.prototype._reportHeapSnapshotProgress):
(WebInspector.ProfilerDispatcher.prototype.setRecordingProfile):
- inspector/front-end/inspector.css:
(.record-cpu-profile-status-bar-item .glyph):
(.record-cpu-profile-status-bar-item.toggled-on .glyph):
- 1:33 AM Changeset in webkit [102905] by
-
- 2 edits in trunk/Tools
[Qt] QtWebKit fails to build on Mac OS X after r102776
https://bugs.webkit.org/show_bug.cgi?id=74593
Patch by Alexander Færøy <ahf@0x90.dk> on 2011-12-15
Reviewed by Simon Hausmann.
CONFIG =+ link_pkgconfig is needed such that the correct parameters
are passed to the compiler.
- DumpRenderTree/qt/DumpRenderTree.pro:
- 1:29 AM Changeset in webkit [102904] by
-
- 3 edits1 add in trunk/LayoutTests
Unreviewed, Qt rebaseline after r102149 and r102846.
- platform/qt/editing/pasteboard/paste-text-013-expected.txt:
- platform/qt/editing/pasteboard/paste-text-014-expected.txt:
- platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Added.
- 1:23 AM Changeset in webkit [102903] by
-
- 11 edits in trunk/Source/WebCore
Web Inspector: [Styles] Update selected DOM element styles whenever applicable media queries change
https://bugs.webkit.org/show_bug.cgi?id=74292
The change introduces and handles in the frontend a new event type for the CSS domain,
"mediaQueryResultChanged", which gets fired every time a viewport-dependent media feature
changes its value. This allows users to see live changes of the (media-dependent) matched
rules for inspected elements.
Reviewed by Pavel Feldman.
- inspector/CodeGeneratorInspector.py:
(DomainNameFixes):
- inspector/Inspector.json:
- inspector/InspectorCSSAgent.cpp:
(WebCore::InspectorCSSAgent::InspectorCSSAgent):
(WebCore::InspectorCSSAgent::setFrontend):
(WebCore::InspectorCSSAgent::clearFrontend):
(WebCore::InspectorCSSAgent::restore):
(WebCore::InspectorCSSAgent::enable):
(WebCore::InspectorCSSAgent::disable):
(WebCore::InspectorCSSAgent::mediaQueryResultChanged):
- inspector/InspectorCSSAgent.h:
- inspector/InspectorInstrumentation.cpp:
(WebCore::InspectorInstrumentation::mediaQueryResultChangedImpl):
- inspector/InspectorInstrumentation.h:
(WebCore::InspectorInstrumentation::mediaQueryResultChanged):
- inspector/front-end/CSSStyleModel.js:
(WebInspector.CSSStyleModel):
(WebInspector.CSSStyleModel.prototype.mediaQueryResultChanged):
(WebInspector.CSSDispatcher):
(WebInspector.CSSDispatcher.prototype.mediaQueryResultChanged):
- inspector/front-end/MetricsSidebarPane.js:
(WebInspector.MetricsSidebarPane):
(WebInspector.MetricsSidebarPane.prototype._styleSheetOrMediaQueryResultChanged):
- inspector/front-end/StylesSidebarPane.js:
(WebInspector.StylesSidebarPane):
(WebInspector.StylesSidebarPane.prototype._styleSheetOrMediaQueryResultChanged):
- page/FrameView.cpp:
(WebCore::FrameView::layout):
- 1:21 AM Changeset in webkit [102902] by
-
- 1 edit5 deletes in trunk/LayoutTests
Unreviewed, removing incorrect expectaions.
- platform/chromium-cg-mac-leopard/media/video-poster-blocked-by-willsendrequest-expected.txt: Removed.
- platform/chromium-cg-mac-snowleopard/media/video-poster-blocked-by-willsendrequest-expected.txt: Removed.
- platform/chromium-mac-leopard/media/video-poster-blocked-by-willsendrequest-expected.txt: Removed.
- platform/chromium-mac-snowleopard/media/video-poster-blocked-by-willsendrequest-expected.txt: Removed.
- platform/chromium-win-xp/media/video-poster-blocked-by-willsendrequest-expected.txt: Removed.
- 1:12 AM Changeset in webkit [102901] by
-
- 2 edits in branches/chromium/963/Source/WebCore/inspector/front-end
Merge 102756 - Web Inspector: [Regression] Scripts panel debug sidebar toolbar should not be scrolled out of the screen.
https://bugs.webkit.org/show_bug.cgi?id=74447
Reviewed by Pavel Feldman.
- inspector/front-end/ScriptsPanel.js:
(WebInspector.ScriptsPanel.prototype.wasShown):
- inspector/front-end/scriptsPanel.css:
(#scripts-debug-toolbar):
(#scripts-debug-sidebar-contents):
TBR=vsevik@chromium.org
BUG=107420
Review URL: http://codereview.chromium.org/8949013
- 1:09 AM Changeset in webkit [102900] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, add fast/images/move-image-to-new-document.html in GTK
test_expectations.
- platform/gtk/test_expectations.txt:
- 1:08 AM Changeset in webkit [102899] by
-
- 1 edit in branches/chromium/963/Source/WebCore/inspector/front-end/treeoutline.js
Merge 102757 - Web Inspector: TreeOutline's is broken when li elements have padding-left different from 14px.
https://bugs.webkit.org/show_bug.cgi?id=74445
Reviewed by Pavel Feldman.
- inspector/front-end/treeoutline.js:
(TreeElement.prototype.isEventWithinDisclosureTriangle):
TBR=vsevik@chromium.org
BUG=107418
Review URL: http://codereview.chromium.org/8952012
- 12:52 AM Changeset in webkit [102898] by
-
- 4 edits3 adds in trunk
Web Inspector: [Regression] Network manager fails to show resource type and MIME type in incorrect MIME type console message.
https://bugs.webkit.org/show_bug.cgi?id=74516
Reviewed by Pavel Feldman.
Source/WebCore:
Test: http/tests/inspector/network/script-as-text-loading.html
- inspector/front-end/ConsoleMessage.js:
(WebInspector.ConsoleMessageImpl.prototype._formatMessage):
- inspector/front-end/NetworkManager.js:
(WebInspector.NetworkDispatcher.prototype._updateResourceWithResponse):
LayoutTests:
- http/tests/inspector/network/resources/script-as-text.php: Added.
- http/tests/inspector/network/script-as-text-loading-expected.txt: Added.
- http/tests/inspector/network/script-as-text-loading.html: Added.
- 12:10 AM Changeset in webkit [102897] by
-
- 3 edits1 add in trunk/LayoutTests
Unreviewed, GTK rebaseline after r102149 and r102846.
- platform/gtk/editing/pasteboard/paste-text-013-expected.txt:
- platform/gtk/editing/pasteboard/paste-text-014-expected.txt:
- platform/gtk/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Added.
Dec 14, 2011:
- 11:00 PM Changeset in webkit [102896] by
-
- 5 edits2 adds in trunk
A spin button changes the value incorrectly if it is clicked after touch events.
https://bugs.webkit.org/show_bug.cgi?id=71181
Reviewed by Ryosuke Niwa.
Source/WebCore:
SpinButtonElement assumed setHovered(true) was always called before a
mousemove event in the element. It is not true for touch events.
We should not reset m_upDownState to Indetermiante in setHovered(true),
and should reset it when the mouse pointer moves out.
This change fixes the flakiness of fast/forms/input-step-as-double.html.
Test: fast/events/touch/touch-before-pressing-spin-button.html
- html/shadow/TextControlInnerElements.cpp:
(WebCore::SpinButtonElement::defaultEventHandler):
Add an assertion that m_upDownState should not be Indetermiante.
Reset m_upDownState to Indeterminate when the mouse pointer moves out
from the element.
(WebCore::SpinButtonElement::setHovered):
Reset m_upDownState to Indeterminate when the element becomes unhovered.
LayoutTests:
- fast/events/touch/touch-before-pressing-spin-button-expected.txt: Added.
- fast/events/touch/touch-before-pressing-spin-button.html: Added.
- platform/chromium/test_expectations.txt: Remove the flakiness of fast/forms/input-step-as-double.html.
- platform/qt/Skipped: ditto.
- 10:57 PM Changeset in webkit [102895] by
-
- 2 edits1 add in trunk/Source/WebCore
https://bugs.webkit.org/show_bug.cgi?id=74543
Add CSS*.cpp to a new CSSAllInOne.cpp file with two exceptions:
CSSProperty.cpp
CSSPrimitiveValue.cpp
Adding these two broke things with a templates problem that was not easily fixable.
Reviewed by Steve Falkenburg.
- WebCore.vcproj/WebCore.vcproj:
- css/CSSAllInOne.cpp: Added.
- 10:51 PM Changeset in webkit [102894] by
-
- 3 edits2 adds in trunk
[chromium] DatabaseObserver needs threadsafe fixes and other clean-up.
https://bugs.webkit.org/show_bug.cgi?id=74558
Reviewed by Dmitry Titov.
Source/WebKit/chromium:
The important part of this fix is the removal of AllowCrossThreadAccess so
that ref counting happens appropriately.
Minor clean up throughout: Removed unnecessary WTF prefix in many
of these places and unnecessary String().
- src/DatabaseObserver.cpp:
(WebKit::AllowDatabaseMainThreadBridge::create):
(WebKit::AllowDatabaseMainThreadBridge::signalCompleted): Get rid of
AllowCrossThreadAccess so that "this" get ref counted and remove mode from being
a member variable since a String in a ThreadSafeRefCounted class is bad.
(WebKit::AllowDatabaseMainThreadBridge::AllowDatabaseMainThreadBridge): Ditto.
(WebKit::AllowDatabaseMainThreadBridge::allowDatabaseTask): Pass through mode
and minor code cleaning to do only one call to signalCompleted.
(WebKit::allowDatabaseForWorker): Just removed unnecessary String()'s.
LayoutTests:
Added a test which would fail without some of these fixes.
- http/tests/workers/interrupt-database-sync-open-crash.html: Added.
- http/tests/workers/resources/open-database-sync.js: Added.
(onmessage):
- 10:48 PM Changeset in webkit [102893] by
-
- 3 edits in trunk/Source/WebCore
Generated images should respect the accelerated state of the context they're going to be drawn into
https://bugs.webkit.org/show_bug.cgi?id=74577
<rdar://problem/10584392>
Reviewed by Simon Fraser.
The tiled code path for GeneratorGeneratedImage and CrossfadeGeneratedImage blindly creates
an unaccelerated ImageBuffer. Instead, take into account the accelerated state of the destination context.
No new tests, as this is a simple performance improvement.
- platform/graphics/CrossfadeGeneratedImage.cpp:
(WebCore::CrossfadeGeneratedImage::drawPattern):
- platform/graphics/GeneratorGeneratedImage.cpp:
(WebCore::GeneratorGeneratedImage::drawPattern):
- 10:36 PM Changeset in webkit [102892] by
-
- 3 edits in trunk/Source/WebKit/efl
[EFL] Change efl style variable name with WebKit style for internal functions.
https://bugs.webkit.org/show_bug.cgi?id=74474
Reviewed by Ryosuke Niwa.
In order to be more compliant with WebKit coding style, variable names of internal functions
should be changed with WebKit coding style.
- ewk/ewk_private.h:
- ewk/ewk_view.cpp:
(ewk_view_scroll):
- 10:34 PM Changeset in webkit [102891] by
-
- 4 edits in trunk
[chromium] Remove redundant third_party entries from chromium DEPS
https://bugs.webkit.org/show_bug.cgi?id=74472
Reviewed by Kenneth Russell.
Source/WebKit/chromium:
Removed redundant DEPS entries for third_party subdirectories
coming from chromium_svn, which were causing intermittent gclient
failures on the bots.
- DEPS:
Tools:
- Scripts/update-webkit-chromium: Temporarily keep unversioned trees.
- 10:32 PM Changeset in webkit [102890] by
-
- 2 edits in trunk/Tools
[Refactoring] In prepare-ChangeLog, replace $isGit and $isSVN with
VCSUtils::isGit() and VCSUtils::isSVN().
https://bugs.webkit.org/show_bug.cgi?id=74485
Reviewed by David Kilzer.
We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
manner. This bug is one of the incremental refactorings to remove all top-level
code and global variables from prepare-ChangeLog. This patch replaces $isGit and $isSVN
with VCSUtils::isGit() and VCSUtils::isSVN(). This patch also removes firstDirectoryOrCwd(),
assuming that no user will mix Git/SVN checkouts and thus we can judge SVN or Git
just by looking at the current working directory.
- Scripts/prepare-ChangeLog: Removed firstDirectoryOrCwd().
(diffFromToString):
(diffCommand):
(statusCommand):
(createPatchCommand):
(diffHeaderFormat):
(generateFileList):
(isAddedStatus):
(isConflictStatus):
(statusDescription):
(extractLineRange):
- 10:25 PM Changeset in webkit [102889] by
-
- 2 edits in trunk/Source/WebCore
Web Inspector: cleanup unused variable introduced at r102803
- inspector/front-end/NetworkManager.js:
(WebInspector.NetworkManager.prototype.enableResourceTracking):
(WebInspector.NetworkManager.prototype.disableResourceTracking):
- 10:14 PM Changeset in webkit [102888] by
-
- 2 edits in trunk/Source/WebCore
fast path to accelerate processing in AudioBus::processWithGainFromMonoStereo
https://bugs.webkit.org/show_bug.cgi?id=74054
Patch by Wei James <james.wei@intel.com> on 2011-12-14
Reviewed by Kenneth Russell.
Avoid de-zippering when the gain has converged on the targetGain.
It can get about 75% performance gain at most when all frames don't need
de-zippering.
- platform/audio/AudioBus.cpp:
(WebCore::AudioBus::processWithGainFromMonoStereo):
- 10:14 PM Changeset in webkit [102887] by
-
- 2 edits in trunk/Source/WebKit/chromium
Increase maximum number of gamepad buttons in Chromium port interface
https://bugs.webkit.org/show_bug.cgi?id=74559
Patch by Scott Graham <scottmg@chromium.org> on 2011-12-14
Reviewed by Darin Fisher.
- public/platform/WebGamepad.h:
- 9:55 PM Changeset in webkit [102886] by
-
- 7 edits3 copies7 adds2 deletes in trunk/LayoutTests
[Chromium] Test expectatino update.
- Rebaseline for basic-selects.html.
- Move menulist-onchange-fired-with-key-up-down.html to the WONTFIX section.
- Remove a duplicated entry.
- platform/chromium-cg-mac-leopard/fast/forms/basic-selects-expected.png:
- platform/chromium-cg-mac-leopard/fast/forms/basic-selects-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/fast/forms/basic-selects-expected.png: Added.
- platform/chromium-cg-mac-snowleopard/fast/forms/basic-selects-expected.txt: Added.
- platform/chromium-cg-mac/fast/forms/basic-selects-expected.png: Removed.
- platform/chromium-linux-x86/fast/forms/basic-selects-expected.txt: Copied from LayoutTests/platform/chromium-linux/fast/forms/basic-selects-expected.txt.
- platform/chromium-linux/fast/forms/basic-selects-expected.png:
- platform/chromium-linux/fast/forms/basic-selects-expected.txt:
- platform/chromium-mac-leopard/fast/forms/basic-selects-expected.png: Added.
- platform/chromium-mac-leopard/fast/forms/basic-selects-expected.txt: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.png: Added.
- platform/chromium-mac-snowleopard/fast/forms/basic-selects-expected.txt: Added.
- platform/chromium-mac/fast/forms/basic-selects-expected.png: Removed.
- platform/chromium-win-vista/fast/forms/basic-selects-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/forms/basic-selects-expected.txt.
- platform/chromium-win-xp/fast/forms/basic-selects-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/forms/basic-selects-expected.txt.
- platform/chromium-win/fast/forms/basic-selects-expected.png:
- platform/chromium-win/fast/forms/basic-selects-expected.txt:
- platform/chromium/test_expectations.txt:
- 9:48 PM Changeset in webkit [102885] by
-
- 2 edits in trunk/Source/JavaScriptCore
Revert unintentional change to JavaScriptCore.def
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- 9:47 PM Changeset in webkit [102884] by
-
- 2 edits in trunk/LayoutTests
[Mac] Skip menulist-popup-crash.html because of timeout.
https://bugs.webkit.org/show_bug.cgi?id=73304
- platform/mac/Skipped:
- 9:40 PM Changeset in webkit [102883] by
-
- 3 edits in trunk/Source/WebKit/wince
Opening two popup menus by dispatchEvent() makes problems.
https://bugs.webkit.org/show_bug.cgi?id=73304
Patch by Jing Zhao <jingzhao@chromium.org> on 2011-12-14
Reviewed by Ryosuke Niwa.
- WebCoreSupport/ChromeClientWinCE.cpp:
(WebKit::ChromeClientWinCE::hasOpenedPopup): Not implemented.
- WebCoreSupport/ChromeClientWinCE.h: Overrides hasOpenedPopup().
- 9:26 PM Changeset in webkit [102882] by
-
- 3 edits in trunk/Source/WebCore
Optimize MutationObserverInterestGroup construction
https://bugs.webkit.org/show_bug.cgi?id=74563
Reviewed by Ojan Vafai.
Inline MutationObserverInterestGroup's creation methods and fix an
accidental pass-by-value in an attempt to further reduce the CPU
footprint of MutationObservers.
No new tests, refactor only.
- dom/WebKitMutationObserver.cpp:
(WebCore::MutationObserverInterestGroup::MutationObserverInterestGroup): Pass observers HashMap by reference.
- dom/WebKitMutationObserver.h:
(WebCore::MutationObserverInterestGroup::createForChildListMutation): Inline.
(WebCore::MutationObserverInterestGroup::createForCharacterDataMutation): Inline.
(WebCore::MutationObserverInterestGroup::createForAttributesMutation): Inline.
(WebCore::MutationObserverInterestGroup::hasOldValue): Remove spurious inline keyword.
- 9:22 PM Changeset in webkit [102881] by
-
- 4 edits in trunk/Source/WebKit/chromium
Unreviewed, rolling out r102873.
http://trac.webkit.org/changeset/102873
https://bugs.webkit.org/show_bug.cgi?id=64434
Break the build
Patch by Kenichi Ishibashi <bashi@chromium.org> on 2011-12-14
- public/WebPlugin.h:
- src/WebPluginContainerImpl.cpp:
- src/WebPluginContainerImpl.h:
- 9:20 PM Changeset in webkit [102880] by
-
- 2 edits in trunk/LayoutTests
Unreviewed test_expectations.txt update.
- platform/chromium/test_expectations.txt:
- 9:08 PM Changeset in webkit [102879] by
-
- 2 edits in trunk/Source/WebKit/mac
Mac build fix after r102874.
- WebCoreSupport/WebChromeClient.mm:
- 8:52 PM Changeset in webkit [102878] by
-
- 1 edit1 delete in trunk/LayoutTests
Unreviewed expectation update.
- platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt: Removed.
- 8:40 PM Changeset in webkit [102877] by
-
- 8 edits1 add2 deletes in trunk
Seeing crash in DRT after loading-iframe-sends-notification.html land
https://bugs.webkit.org/show_bug.cgi?id=72624
Source/WebCore:
When an iframe finishes loading, send an accessibility notification
on the renderer, rather than on a parent node. The only reason it was
being posted on a parent before was because there was no way to detect
that in a test. This is simpler and now covered by the test.
Reviewed by Chris Fleizach.
Updates existing test:
accessibility/loading-iframe-sends-notification.html
- dom/Document.cpp:
(WebCore::Document::implicitClose):
LayoutTests:
Rewrite test to use a global addNotificationListener, which makes it
more robust and cross-platform.
Reviewed by Chris Fleizach.
- accessibility/loading-iframe-sends-notification-expected.txt: Added.
- accessibility/loading-iframe-sends-notification.html:
- platform/chromium/accessibility/loading-iframe-sends-notification-expected.txt: Removed.
- platform/chromium/test_expectations.txt:
- platform/gtk/Skipped:
- platform/gtk/accessibility/loading-iframe-sends-notification-expected.txt: Removed.
- platform/mac/Skipped:
- platform/win/Skipped:
- 8:37 PM Changeset in webkit [102876] by
-
- 14 edits in trunk/Source
[chromium] Add inhibitDraw to CCScheduler and drop root impl to prevent background flash on tab restore
https://bugs.webkit.org/show_bug.cgi?id=74351
Reviewed by James Robinson.
Source/WebCore:
- platform/graphics/chromium/cc/CCLayerTreeHost.cpp:
(WebCore::CCLayerTreeHost::setNeedsCommit):
(WebCore::CCLayerTreeHost::didBecomeInvisibleOnImplThread):
- platform/graphics/chromium/cc/CCScheduler.cpp:
(WebCore::CCScheduler::getNextAction):
(WebCore::CCScheduler::processScheduledActions):
- platform/graphics/chromium/cc/CCScheduler.h:
- platform/graphics/chromium/cc/CCSchedulerStateMachine.cpp:
(WebCore::CCSchedulerStateMachine::CCSchedulerStateMachine):
(WebCore::CCSchedulerStateMachine::nextAction):
- platform/graphics/chromium/cc/CCSchedulerStateMachine.h:
(WebCore::CCSchedulerStateMachine::setInhibitDraw):
- platform/graphics/chromium/cc/CCThreadProxy.cpp:
(WebCore::CCThreadProxy::setVisibleOnImplThread):
(WebCore::CCThreadProxy::inhibitDraw):
- platform/graphics/chromium/cc/CCThreadProxy.h:
Source/WebKit/chromium:
- tests/CCSchedulerStateMachineTest.cpp:
(WebCore::StateMachine::inhibitDraw):
(WebCore::TEST):
- tests/CCSchedulerTest.cpp:
(WebKitTests::FakeCCSchedulerClient::setInhibitDraw):
(WebKitTests::FakeCCSchedulerClient::inhibitDraw):
(WebKitTests::SchedulerClientThatSetNeedsDrawInsideDraw::inhibitDraw):
(WebKitTests::SchedulerClientThatSetNeedsCommitInsideDraw::inhibitDraw):
- 8:19 PM Changeset in webkit [102875] by
-
- 6 edits2 adds in trunk
Crash due to incorrect parsing of isolates
https://bugs.webkit.org/show_bug.cgi?id=74311
When <bdi> content is wrapped, all hell breaks loose
https://bugs.webkit.org/show_bug.cgi?id=74396
Patch by Ken Buchanan <kenrb@chromium.org> on 2011-12-14
Reviewed by Eric Seidel.
Source/WebCore:
When an isolate was encountered during run layout, the entire isolate
would be parsed, even if the run started in the middle of the isolate.
This would sometimes cause parts of the isolate to be added multiple
times as runs. This patch marks the starting position within the
isolate so nothing is parsed twice.
This patch changes appendRun() so that when a run is added that is
inside an isolate, it saves the start position of the run rather than
the root. This allows constructBidiRuns() to resume parsing the
isolate from the correct position.
The change to RenderBox partially reverts a previous change I had
done. It makes sense to screen for the condition, as was previously
the case.
This patch does not add the test case from 74396 because a separate
bug is preventing it from rendering correctly.
- rendering/InlineIterator.h:
(WebCore::addPlaceholderRunForIsolatedInline)
(WebCore::IsolateTracker::addFakeRunIfNecessary)
(WebCore::InlineBidiResolver::appendRun)
- rendering/RenderBlockLineLayout.cpp:
(WebCore::RenderBlockLineLayout::constructBidiRuns)
- rendering/RenderBox.cpp:
(WebCore::RenderBox::positionLineBox)
LayoutTests:
Layout test has multiple lines inside an isolate to ensure each run
is created only once.
The test that is in bug 74396 will have to be added once bug 74489 is
fixed.
- LayoutTests/fast/text/international/multiline-and-object-inside-isolate-crash-expected.txt: Added
- LayoutTests/fast/text/international/multiline-and-object-inside-isolate-crash.html: Added
- 8:16 PM Changeset in webkit [102874] by
-
- 28 edits2 adds in trunk
Opening two popup menus by dispatchEvent() makes problems.
https://bugs.webkit.org/show_bug.cgi?id=73304
Patch by Jing Zhao <jingzhao@chromium.org> on 2011-12-14
Reviewed by Kent Tamura.
Source/WebCore:
By using element.dispatchEvent(), a user written script can open two
popup menus, which causes various problems in different platforms.
Add a hasOpenedPopup() method in ChromeClient and a wrapper in Chrome.
In RenderMenuList::showPopup(), check if there is an opened popup menu
before opening a new popup menu.
Test: fast/forms/select-popup-crash.html
- loader/EmptyClients.h: Overrides hasOpenedPopup().
(WebCore::EmptyChromeClient::hasOpenedPopup): Returns false as a default case.
- page/Chrome.cpp:
(WebCore::Chrome::hasOpenedPopup): Calls ChromeClient::hasOpenedPopup().
- page/Chrome.h: Declares hasOpenedPopup().
- page/ChromeClient.h: Declares hasOpenedPopup() as a pure virtual function.
- rendering/RenderMenuList.cpp:
(WebCore::RenderMenuList::showPopup): Calls Chrome::hasOpenedPopup() before opening a new popup menu.
Source/WebKit/chromium:
By using element.dispatchEvent(), a user written script can open two
popup menus, which causes the assertion in WebViewImpl::popupOpened()
fail.
ChromeClientImpl::hasOpenedPopup() is called by Chrome::hasOpenedPopup()
in RenderMenuList::showPopup(), to check if there is an opened popup
menu before opening a new popup menu.
- src/ChromeClientImpl.cpp:
(WebKit::ChromeClientImpl::hasOpenedPopup): Checks the popup in WebViewImpl.
- src/ChromeClientImpl.h: Overrides hasOpenedPopup().
Source/WebKit/efl:
- WebCoreSupport/ChromeClientEfl.cpp:
(WebCore::ChromeClientEfl::hasOpenedPopup): Not implemented.
- WebCoreSupport/ChromeClientEfl.h: Overrides hasOpenedPopup().
Source/WebKit/gtk:
- WebCoreSupport/ChromeClientGtk.cpp:
(WebKit::ChromeClient::hasOpenedPopup): Not implemented.
- WebCoreSupport/ChromeClientGtk.h: Overrides hasOpenedPopup().
Source/WebKit/mac:
- WebCoreSupport/WebChromeClient.h: Overrides hasOpenedPopup().
- WebCoreSupport/WebChromeClient.mm:
(WebChromeClient::hasOpenedPopup): Not implemented.
Source/WebKit/qt:
- WebCoreSupport/ChromeClientQt.cpp:
(WebCore::ChromeClientQt::hasOpenedPopup): Not implemented.
- WebCoreSupport/ChromeClientQt.h: Overrides hasOpenedPopup().
Source/WebKit/win:
- WebCoreSupport/WebChromeClient.cpp:
(WebChromeClient::hasOpenedPopup): Not implemented.
- WebCoreSupport/WebChromeClient.h: Overrides hasOpenedPopup().
Source/WebKit2:
- WebProcess/WebCoreSupport/WebChromeClient.cpp:
(WebKit::WebChromeClient::hasOpenedPopup): Not implemented.
- WebProcess/WebCoreSupport/WebChromeClient.h: Overrides hasOpenedPopup().
LayoutTests:
- fast/forms/select/menulist-popup-crash-expected.txt: Added.
- fast/forms/select/menulist-popup-crash.html: Added.
- 7:39 PM Changeset in webkit [102873] by
-
- 4 edits in trunk/Source/WebKit/chromium
[Chromium] Implement PluginViewBase::getFormValue
https://bugs.webkit.org/show_bug.cgi?id=64434
Adds getFormValue() to WebPluginContainerImpl as an implementation of PluginViewBase::getFormValue().
Reviewed by Darin Fisher.
No new tests. No behavior change at this time. We should add a test for PPAPI after chromium supports the feature.
- public/WebPlugin.h: Added getFormValue().
- src/WebPluginContainerImpl.cpp:
(WebKit::WebPluginContainerImpl::getFormValue): Added.
- src/WebPluginContainerImpl.h: Added getFormValue().
- 7:24 PM Changeset in webkit [102872] by
-
- 2 edits in trunk/Source/WebCore
Clean up style in CSSStyleSelector.cpp
https://bugs.webkit.org/show_bug.cgi?id=74548
Reviewed by Ojan Vafai.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::styleForElement):
(WebCore::CSSStyleSelector::pseudoStyleForElement):
- 7:22 PM Changeset in webkit [102871] by
-
- 4 edits in trunk/Source/WebCore
Unreviewed, rolling out r102794.
http://trac.webkit.org/changeset/102794
https://bugs.webkit.org/show_bug.cgi?id=74220
Reapplying patch since it is not the cause of the problems
described in bug 74220.
- bindings/v8/V8Proxy.cpp:
(WebCore::V8Proxy::reportUnsafeAccessTo):
- bindings/v8/V8Proxy.h:
- bindings/v8/custom/V8CustomXPathNSResolver.cpp:
(WebCore::V8CustomXPathNSResolver::lookupNamespaceURI):
- 6:30 PM Changeset in webkit [102870] by
-
- 6 edits1 copy1 move5 adds2 deletes in trunk/LayoutTests
Unreviewed expectation update.
- fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
- platform/chromium-cg-mac-leopard/media/video-poster-blocked-by-willsendrequest-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/media/video-poster-blocked-by-willsendrequest-expected.txt: Added.
- platform/chromium-cg-mac-snowleopard/platform/chromium/compositing/huge-layer-rotated-expected.png:
- platform/chromium-mac-leopard/media/video-poster-blocked-by-willsendrequest-expected.txt: Added.
- platform/chromium-mac-snowleopard/media/video-poster-blocked-by-willsendrequest-expected.txt: Added.
- platform/chromium-mac-snowleopard/svg/css/getComputedStyle-basic-expected.txt: Renamed from LayoutTests/platform/chromium/svg/css/getComputedStyle-basic-expected.txt.
- platform/chromium-win-xp/media/video-poster-blocked-by-willsendrequest-expected.txt: Added.
- platform/chromium-win/fast/css/getComputedStyle/computed-style-expected.txt:
- platform/chromium-win/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
- platform/chromium-win/svg/css/getComputedStyle-basic-expected.txt:
- platform/gtk/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Removed.
- platform/mac/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Copied from LayoutTests/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt.
- platform/qt/fast/css/getComputedStyle/computed-style-without-renderer-expected.txt: Removed.
- 6:28 PM Changeset in webkit [102869] by
-
- 21 edits in trunk/Source
Build fix.
Clear the executable bit from header files. They don't need it.
- 6:20 PM Changeset in webkit [102868] by
-
- 12 edits3 copies in tags/Safari-535.13.1/Source/WebKit2
Merged r102640.
- 6:14 PM Changeset in webkit [102867] by
-
- 89 edits in trunk/Source
Remove whitespace from InheritedPropertySheets attributes in
vsprops files to appease the Visual Studio project migrator.
Patch by Sam Weinig <weinig@apple.com> on 2011-12-14
Reviewed by Adam Roben.
Source/JavaScriptCore:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreDebug.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreDebugAll.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreDebugCairoCFLite.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGeneratedDebug.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGeneratedDebugAll.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGeneratedDebugCairoCFLite.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGeneratedProduction.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGeneratedRelease.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGeneratedReleaseCairoCFLite.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGeneratedReleasePGO.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreProduction.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreRelease.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreReleaseCairoCFLite.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreReleasePGO.vsprops:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreReleasePGOOptimize.vsprops:
- JavaScriptCore.vcproj/WTF/WTFDebug.vsprops:
- JavaScriptCore.vcproj/WTF/WTFDebugAll.vsprops:
- JavaScriptCore.vcproj/WTF/WTFDebugCairoCFLite.vsprops:
- JavaScriptCore.vcproj/WTF/WTFProduction.vsprops:
- JavaScriptCore.vcproj/WTF/WTFRelease.vsprops:
- JavaScriptCore.vcproj/WTF/WTFReleaseCairoCFLite.vsprops:
- JavaScriptCore.vcproj/WTF/WTFReleasePGO.vsprops:
- JavaScriptCore.vcproj/jsc/jscDebug.vsprops:
- JavaScriptCore.vcproj/jsc/jscDebugAll.vsprops:
- JavaScriptCore.vcproj/jsc/jscDebugCairoCFLite.vsprops:
- JavaScriptCore.vcproj/jsc/jscProduction.vsprops:
- JavaScriptCore.vcproj/jsc/jscRelease.vsprops:
- JavaScriptCore.vcproj/jsc/jscReleaseCairoCFLite.vsprops:
- JavaScriptCore.vcproj/jsc/jscReleasePGO.vsprops:
- JavaScriptCore.vcproj/testRegExp/testRegExpDebug.vsprops:
- JavaScriptCore.vcproj/testRegExp/testRegExpDebugAll.vsprops:
- JavaScriptCore.vcproj/testRegExp/testRegExpDebugCairoCFLite.vsprops:
- JavaScriptCore.vcproj/testRegExp/testRegExpProduction.vsprops:
- JavaScriptCore.vcproj/testRegExp/testRegExpRelease.vsprops:
- JavaScriptCore.vcproj/testRegExp/testRegExpReleaseCairoCFLite.vsprops:
- JavaScriptCore.vcproj/testRegExp/testRegExpReleasePGO.vsprops:
- JavaScriptCore.vcproj/testapi/testapiDebug.vsprops:
- JavaScriptCore.vcproj/testapi/testapiDebugAll.vsprops:
- JavaScriptCore.vcproj/testapi/testapiDebugCairoCFLite.vsprops:
- JavaScriptCore.vcproj/testapi/testapiProduction.vsprops:
- JavaScriptCore.vcproj/testapi/testapiRelease.vsprops:
- JavaScriptCore.vcproj/testapi/testapiReleaseCairoCFLite.vsprops:
Source/WebCore:
- WebCore.vcproj/QTMovieWinDebug.vsprops:
- WebCore.vcproj/QTMovieWinDebugAll.vsprops:
- WebCore.vcproj/QTMovieWinDebugCairoCFLite.vsprops:
- WebCore.vcproj/QTMovieWinProduction.vsprops:
- WebCore.vcproj/QTMovieWinRelease.vsprops:
- WebCore.vcproj/QTMovieWinReleaseCairoCFLite.vsprops:
- WebCore.vcproj/WebCoreDebug.vsprops:
- WebCore.vcproj/WebCoreDebugAll.vsprops:
- WebCore.vcproj/WebCoreDebugCairoCFLite.vsprops:
- WebCore.vcproj/WebCoreProduction.vsprops:
- WebCore.vcproj/WebCoreRelease.vsprops:
- WebCore.vcproj/WebCoreReleaseCairoCFLite.vsprops:
Source/WebKit/win:
- WebKit.vcproj/InterfacesDebug.vsprops:
- WebKit.vcproj/InterfacesDebugAll.vsprops:
- WebKit.vcproj/InterfacesDebugCairoCFLite.vsprops:
- WebKit.vcproj/InterfacesProduction.vsprops:
- WebKit.vcproj/InterfacesRelease.vsprops:
- WebKit.vcproj/InterfacesReleaseCairoCFLite.vsprops:
- WebKit.vcproj/WebKitGUIDDebug.vsprops:
- WebKit.vcproj/WebKitGUIDDebugAll.vsprops:
- WebKit.vcproj/WebKitGUIDDebugCairoCFLite.vsprops:
- WebKit.vcproj/WebKitGUIDProduction.vsprops:
- WebKit.vcproj/WebKitGUIDRelease.vsprops:
- WebKit.vcproj/WebKitGUIDReleaseCairoCFLite.vsprops:
- WebKit.vcproj/WebKitLibDebug.vsprops:
- WebKit.vcproj/WebKitLibDebugAll.vsprops:
- WebKit.vcproj/WebKitLibDebugCairoCFLite.vsprops:
- WebKit.vcproj/WebKitLibProduction.vsprops:
- WebKit.vcproj/WebKitLibRelease.vsprops:
- WebKit.vcproj/WebKitLibReleaseCairoCFLite.vsprops:
Source/WebKit2:
- win/WebKit2Debug.vsprops:
- win/WebKit2DebugAll.vsprops:
- win/WebKit2DebugCairoCFLite.vsprops:
- win/WebKit2Production.vsprops:
- win/WebKit2Release.vsprops:
- win/WebKit2ReleaseCairoCFLite.vsprops:
- win/WebKit2WebProcessDebug.vsprops:
- win/WebKit2WebProcessDebugAll.vsprops:
- win/WebKit2WebProcessDebugCairoCFLite.vsprops:
- win/WebKit2WebProcessProduction.vsprops:
- win/WebKit2WebProcessRelease.vsprops:
- win/WebKit2WebProcessReleaseCairoCFLite.vsprops:
- 6:10 PM Changeset in webkit [102866] by
-
- 8 edits in trunk/Source/WebKit2
Add WorkQueue::dispatch and RunLoop::dispatch which both take WTF::Function objects
https://bugs.webkit.org/show_bug.cgi?id=74574
Reviewed by Sam Weinig.
- Platform/CoreIPC/Connection.cpp:
(CoreIPC::Connection::SyncMessageState::processIncomingMessage):
(CoreIPC::Connection::addQueueClient):
(CoreIPC::Connection::removeQueueClient):
(CoreIPC::Connection::invalidate):
(CoreIPC::Connection::sendMessage):
(CoreIPC::Connection::postConnectionDidCloseOnConnectionWorkQueue):
(CoreIPC::Connection::connectionDidClose):
(CoreIPC::Connection::enqueueIncomingMessage):
Switch over to dispatch.
- Platform/RunLoop.cpp:
(RunLoop::dispatch):
Create a FunctionWorkItem and call scheduleWork.
- Platform/RunLoop.h:
Add dispatch.
- Platform/WorkItem.h:
(FunctionWorkItem::FunctionWorkItem):
(FunctionWorkItem::execute):
(WorkItem::create):
Add a helper work item that wraps a WTF::Function.
- Platform/WorkQueue.cpp:
(WorkQueue::dispatch):
Create a FunctionWorkItem and call scheduleWork.
- Platform/WorkQueue.h:
Add dispatch.
- UIProcess/Launcher/ProcessLauncher.cpp:
(WebKit::ProcessLauncher::ProcessLauncher):
Switch over to dispatch.
- 6:05 PM Changeset in webkit [102865] by
-
- 2 edits in tags/Safari-535.13.1/Source/WebKit/mac
Merged r102856.
- 6:04 PM Changeset in webkit [102864] by
-
- 2 edits in trunk/Source/WebCore
One more attempt to fix the release build (hopefully the last)
Unreviewed.
- editing/ReplaceSelectionCommand.cpp: Added NodeRenderStyle.h
- 6:02 PM Changeset in webkit [102863] by
-
- 2 edits in trunk/Source
[chromium] Fix CCLayerTreeHostTest shutdown race
https://bugs.webkit.org/show_bug.cgi?id=73926
This patch fixes a shutdown race condition in CCLayerTreeHostTest which
may happen if endTest() is called from within the drawLayersOnCCThread()
test hook. The sequence of events leading to the problem is:
- CCThreadProxy::scheduledActionDrawAndSwap() is called when a frame begins.
- CCThreadProxy calls drawLayersOnCCThread(), which in turn calls endTest().
- Seeing it's not running in the main thread, endTest() posts a task calling itself in the main thread.
- CCThreadProxy posts a task for calling didCommitAndDrawFrame() in the main thread.
The race is between the task posted in step #3 and the CC thread running
in scheduledActionDrawAndSwap(). If the endTask() task is scheduled
before the CC thread reaches step #4, it drains the pending message
queue (CCLayerTreeHostTest.cpp:369) before the task in step #4 is
posted.
The result is that the didCommitAndDrawFrame() task is executed after
the test fixture has been torn down, causing a read of unallocated
memory in CCScopedThreadProxy::runTaskIfNotShutdown (as m_targetThread
is no longer valid).
The fix is check m_shutdown before touching m_targetThread in
CCScopedThreadProxy. That is, events will still be queued after shutdown
but they will not be processed.
Patch by Sami Kyostila <skyostil@chromium.org> on 2011-12-14
Reviewed by James Robinson.
- 6:01 PM Changeset in webkit [102862] by
-
- 57 edits in trunk/Tools
Remove whitespace from InheritedPropertySheets attributes in
vsprops files to appease the Visual Studio project migrator.
Patch by Sam Weinig <weinig@apple.com> on 2011-12-14
Reviewed by Adam Roben.
- DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebug.vsprops:
- DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebugAll.vsprops:
- DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginDebugCairoCFLite.vsprops:
- DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginProduction.vsprops:
- DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginRelease.vsprops:
- DumpRenderTree/TestNetscapePlugIn/win/TestNetscapePluginReleaseCairoCFLite.vsprops:
- DumpRenderTree/win/DumpRenderTreeDebug.vsprops:
- DumpRenderTree/win/DumpRenderTreeDebugAll.vsprops:
- DumpRenderTree/win/DumpRenderTreeDebugCairoCFLite.vsprops:
- DumpRenderTree/win/DumpRenderTreeProduction.vsprops:
- DumpRenderTree/win/DumpRenderTreeRelease.vsprops:
- DumpRenderTree/win/DumpRenderTreeReleaseCairoCFLite.vsprops:
- DumpRenderTree/win/ImageDiffDebug.vsprops:
- DumpRenderTree/win/ImageDiffDebugAll.vsprops:
- DumpRenderTree/win/ImageDiffDebugCairoCFLite.vsprops:
- DumpRenderTree/win/ImageDiffProduction.vsprops:
- DumpRenderTree/win/ImageDiffRelease.vsprops:
- DumpRenderTree/win/ImageDiffReleaseCairoCFLite.vsprops:
- MiniBrowser/Configurations/MiniBrowserDebug.vsprops:
- MiniBrowser/Configurations/MiniBrowserDebugAll.vsprops:
- MiniBrowser/Configurations/MiniBrowserDebugCairoCFLite.vsprops:
- MiniBrowser/Configurations/MiniBrowserProduction.vsprops:
- MiniBrowser/Configurations/MiniBrowserRelease.vsprops:
- MiniBrowser/Configurations/MiniBrowserReleaseCairoCFLite.vsprops:
- TestWebKitAPI/Configurations/TestWebKitAPIRelease.vsprops:
- TestWebKitAPI/Configurations/TestWebKitAPIReleaseCairoCFLite.vsprops:
- WebKitLauncherWin/WebKitLauncherWinDebug.vsprops:
- WebKitLauncherWin/WebKitLauncherWinDebugAll.vsprops:
- WebKitLauncherWin/WebKitLauncherWinDebugCairoCFLite.vsprops:
- WebKitLauncherWin/WebKitLauncherWinProduction.vsprops:
- WebKitLauncherWin/WebKitLauncherWinRelease.vsprops:
- WebKitLauncherWin/WebKitLauncherWinReleaseCairoCFLite.vsprops:
- WebKitTestRunner/win/InjectedBundleDebug.vsprops:
- WebKitTestRunner/win/InjectedBundleDebugAll.vsprops:
- WebKitTestRunner/win/InjectedBundleDebugCairoCFLite.vsprops:
- WebKitTestRunner/win/InjectedBundleProduction.vsprops:
- WebKitTestRunner/win/InjectedBundleRelease.vsprops:
- WebKitTestRunner/win/InjectedBundleReleaseCairoCFLite.vsprops:
- WebKitTestRunner/win/WebKitTestRunnerDebug.vsprops:
- WebKitTestRunner/win/WebKitTestRunnerDebugAll.vsprops:
- WebKitTestRunner/win/WebKitTestRunnerDebugCairoCFLite.vsprops:
- WebKitTestRunner/win/WebKitTestRunnerProduction.vsprops:
- WebKitTestRunner/win/WebKitTestRunnerRelease.vsprops:
- WebKitTestRunner/win/WebKitTestRunnerReleaseCairoCFLite.vsprops:
- WinLauncher/WinLauncherDebug.vsprops:
- WinLauncher/WinLauncherDebugAll.vsprops:
- WinLauncher/WinLauncherDebugCairoCFLite.vsprops:
- WinLauncher/WinLauncherProduction.vsprops:
- WinLauncher/WinLauncherRelease.vsprops:
- WinLauncher/WinLauncherReleaseCairoCFLite.vsprops:
- record-memory-win/record-memory-winDebug.vsprops:
- record-memory-win/record-memory-winDebugAll.vsprops:
- record-memory-win/record-memory-winDebugCairoCFLite.vsprops:
- record-memory-win/record-memory-winProduction.vsprops:
- record-memory-win/record-memory-winRelease.vsprops:
- record-memory-win/record-memory-winReleaseCairoCFLite.vsprops:
- 5:59 PM Changeset in webkit [102861] by
-
- 3 edits in tags/Safari-535.13.1/Source/JavaScriptCore
Merged r102728.
- 5:57 PM Changeset in webkit [102860] by
-
- 2 edits in trunk/Tools
Windows build fix.
Move CHECKs out of the destructor.
- TestWebKitAPI/Tests/WTF/Functional.cpp:
(TestWebKitAPI::B::~B):
(TestWebKitAPI::TEST):
- 5:51 PM Changeset in webkit [102859] by
-
- 6 edits in tags/Safari-535.13.1
Merged r102709.
- 5:38 PM Changeset in webkit [102858] by
-
- 6 edits in trunk/Source/WebCore
Unreviewed, rolling out r102816.
http://trac.webkit.org/changeset/102816
https://bugs.webkit.org/show_bug.cgi?id=74415
Implicated in font-related crashes on Chromium canaries.
- platform/graphics/chromium/FontChromiumWin.cpp:
(WebCore::TransparencyAwareFontPainter::TransparencyAwareGlyphPainter::drawGlyphs):
(WebCore::Font::drawGlyphs):
- platform/graphics/chromium/FontPlatformDataChromiumWin.cpp:
(WebCore::FontPlatformData::FontPlatformData):
(WebCore::FontPlatformData::operator=):
(WebCore::FontPlatformData::~FontPlatformData):
- platform/graphics/chromium/FontPlatformDataChromiumWin.h:
(WebCore::FontPlatformData::size):
(WebCore::FontPlatformData::hash):
- platform/graphics/skia/SkiaFontWin.cpp:
(WebCore::setupPaintForFont):
(WebCore::paintSkiaText):
- platform/graphics/skia/SkiaFontWin.h:
- 5:37 PM Changeset in webkit [102857] by
-
- 4 edits in trunk
binding a member function should ref/deref the object pointer if needed
https://bugs.webkit.org/show_bug.cgi?id=74552
Reviewed by Sam Weinig.
Source/JavaScriptCore:
Add a HasRefAndDeref helper class template which checks if a given class type has ref and deref
member functions which the right type. Use this to determine if we should ref/deref the first parameter.
- wtf/Functional.h:
(WTF::R):
(WTF::C::):
(WTF::RefAndDeref::ref):
(WTF::RefAndDeref::deref):
Tools:
Add new tests.
- TestWebKitAPI/Tests/WTF/Functional.cpp:
(TestWebKitAPI::B::B):
(TestWebKitAPI::B::~B):
(TestWebKitAPI::B::ref):
(TestWebKitAPI::B::deref):
(TestWebKitAPI::B::f):
(TestWebKitAPI::B::g):
(TestWebKitAPI::TEST):
- 5:30 PM Changeset in webkit [102856] by
-
- 2 edits in trunk/Source/WebKit/mac
- 5:30 PM Changeset in webkit [102855] by
-
- 9 edits in trunk
Filter amounts should accept percentages
https://bugs.webkit.org/show_bug.cgi?id=74531
Source/WebCore:
Reviewed by Chris Marrin.
Support percentage arguments for some filter functions, using the FPercent flag
to validUnit(). Fix CSSStyleSelector::createFilterOperations() to do the divide by 100
for percentages.
Replaced isValidFilterArgument(), which just tested arguments one by one for validity, with
parseBuiltinFilterArguments() which tests and creates the CSSValues at the same time, which
is a little more efficient. It also allows filter-specific behavior to be more localized in this
method.
Covered by existing tests.
- css/CSSParser.cpp:
(WebCore::CSSParser::parseBuiltinFilterArguments):
(WebCore::CSSParser::parseFilter):
- css/CSSParser.h:
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::createFilterOperations):
LayoutTests:
Reviewed by Chris Marrin.
Adjust test results now that percentages are allowed for some
filter arguments, and add testing of percentage arguments to filter-property-computed-style.js
- css3/filters/filter-property-computed-style-expected.txt:
- css3/filters/filter-property-parsing-invalid-expected.txt:
- css3/filters/script-tests/filter-property-computed-style.js:
- css3/filters/script-tests/filter-property-parsing-invalid.js:
- 5:24 PM Changeset in webkit [102854] by
-
- 2 edits in trunk/Source/WebCore
Build fix.
Unreviewed.
- editing/ReplaceSelectionCommand.cpp: Added include RenderStyle.h
- 5:17 PM Changeset in webkit [102853] by
-
- 3 edits in trunk/LayoutTests
Updating test results after r102846
Unreviewed.
- platform/chromium-win/editing/pasteboard/paste-text-013-expected.txt:
- platform/chromium-win/editing/pasteboard/paste-text-014-expected.txt:
- 5:15 PM Changeset in webkit [102852] by
-
- 3 edits in tags/Safari-535.13.1/Source/WebCore
Merge 102691.
- 5:08 PM Changeset in webkit [102851] by
-
- 2 edits in branches/safari-534.53-branch/LayoutTests
Merged r97524.
- 5:07 PM Changeset in webkit [102850] by
-
- 4 edits2 copies in branches/safari-534.53-branch
Merged r97502.
- 4:51 PM Changeset in webkit [102849] by
-
- 28 edits2 copies7 adds in trunk
JS_INLINE and WTF_INLINE should be visible from WebCore
https://bugs.webkit.org/show_bug.cgi?id=73191
Source/JavaScriptCore:
- Moved Export related macro definitions from config.h to ExportMacros.h and JSExportMacros.h.
- Moved WTF_USE_JSC and WTF_USE_V8 from various config.h family to Platform.h.
- Replaced JS_EXPORTDATA in wtf moudule with newly introduced WTF_EXPORTDATA.
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-14
Reviewed by Kevin Ollivier.
- JavaScriptCore.xcodeproj/project.pbxproj:
- config.h:
- runtime/JSExportMacros.h: Added.
- wtf/ExportMacros.h:
- wtf/Platform.h:
- wtf/WTFThreadData.h:
- wtf/text/AtomicString.h:
- wtf/text/StringStatics.cpp:
Source/JavaScriptGlue:
- Extracted export related macro definitions to ExportMacros.h and JSExportMacros.h
- Added forwarding headers which used in config.h
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-14
Reviewed by Kevin Ollivier.
- ForwardingHeaders/runtime/JSExportMacros.h: Added.
- ForwardingHeaders/wtf/ExportMacros.h: Added.
- config.h:
Source/WebCore:
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-14
Reviewed by Kevin Ollivier.
- Moved export related definitions from config.h to ExportMacros.h, JSExportMacros.h and PlatformExportMacros.h
- Added forwarding headers which are referred from config.h
No new tests. Only build related changes.
- ForwardingHeaders/runtime/JSExportMacros.h: Added.
- ForwardingHeaders/wtf/ExportMacros.h: Added.
- WebCore.xcodeproj/project.pbxproj:
- config.h:
- platform/PlatformExportMacros.h: Copied from Source/JavaScriptCore/wtf/ExportMacros.h.
Source/WebKit/cf:
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-14
Reviewed by Kevin Ollivier.
Removed macro definitions which is now provided by Platform.h
- WebCoreSupport/WebInspectorClientCF.cpp:
Source/WebKit/mac:
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-14
Reviewed by Kevin Ollivier.
Removed macro definitions which is now provided by Platform.h
- WebKitPrefix.h:
Source/WebKit/qt:
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-14
Reviewed by Kevin Ollivier.
Added a INCLUDEPATH to make JSExportMacros.h visible.
- tests/MIMESniffing/MIMESniffing.pro
Source/WebKit2:
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-14
Reviewed by Kevin Ollivier.
Removed macro definitions which is now provided by Platform.h
- config.h:
Tools:
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-14
Reviewed by Kevin Ollivier.
Removed macro definitions which is now provided by Platform.h
- DumpRenderTree/chromium/config.h:
- DumpRenderTree/config.h:
- DumpRenderTree/ForwardingHeaders/runtime/JSExportMacros.h: Added.
- DumpRenderTree/ForwardingHeaders/wtf/ExportMacros.h: Added.
- DumpRenderTree/win/DumpRenderTreePreBuild.cmd: Add new ForwardingHeaders.
- TestWebKitAPI/config.h:
- WebKitTestRunner/config.h:
- 4:44 PM Changeset in webkit [102848] by
-
- 2 edits in trunk/Source/WebKit2
[Mac] Sandbox violation opening AppleSNBFBUserClient
https://bugs.webkit.org/show_bug.cgi?id=74560
<rdar://problem/10410896>
Reviewed by Darin Adler.
- WebProcess/com.apple.WebProcess.sb: Just allow it.
- 4:41 PM Changeset in webkit [102847] by
-
- 2 edits in trunk/LayoutTests
Unreviewed: more specific bug for suppression of fast/workers/storage.
Bug https://bugs.webkit.org/show_bug.cgi?id=74554 with investigation results filed.
- platform/chromium/test_expectations.txt:
- 4:32 PM Changeset in webkit [102846] by
-
- 12 edits2 adds in trunk
Need a way to produce leaner markup when pasting a fragment containing verbose markup
https://bugs.webkit.org/show_bug.cgi?id=74514
<rdar://problem/10208653>
Reviewed by Ryosuke Niwa.
Source/WebCore:
This patch is another step in the direction of reducing the verbosity of the markup
produced with editing operations.
After the copied fragment is inserted in the document, it is analyzed to remove all
the elements that don't contribute to the style. The decision is made comparing the
render styles. As part of the cleanup, unstyled divs with single child element are
removed. The logic to determine the blocks that can be removed is the same used in
DeleteSelectionCommand and has been moved in CompositeEditCommand.
Test: editing/pasteboard/paste-and-sanitize.html
- editing/CompositeEditCommand.cpp:
(WebCore::CompositeEditCommand::isRemovableBlock): Implements logic to determine
if a block can be removed.
- editing/CompositeEditCommand.h: Added isRemovableBlock declaration.
- editing/DeleteSelectionCommand.cpp:
(WebCore::DeleteSelectionCommand::removeRedundantBlocks): Implemented using
isRemovableBlock from CompositeEditCommand.
- editing/Editor.cpp:
(WebCore::Editor::replaceSelectionWithFragment): Added SanitizeFragment option.
- editing/ReplaceSelectionCommand.cpp:
(WebCore::ReplaceSelectionCommand::ReplaceSelectionCommand): Added initialization
of m_sanitizeFragment member.
(WebCore::ReplaceSelectionCommand::removeRedundantMarkup): New method implementing
the cleanup logic.
(WebCore::ReplaceSelectionCommand::doApply): Added call to removeRedundantMarkup
after the fragment is inserted in the document.
- editing/ReplaceSelectionCommand.h: Added new value to the enum CommandOption,
a new member variable and the new method declaration.
LayoutTests:
- editing/pasteboard/paste-and-sanitize-expected.txt: Added.
- editing/pasteboard/paste-and-sanitize.html: Added.
- editing/pasteboard/paste-text-012-expected.txt: Updated to reflect cleanup.
- editing/pasteboard/testcase-9507-expected.txt: Updated to reflect cleanup.
- platform/mac/editing/pasteboard/paste-text-013-expected.txt: Updated to reflect cleanup.
- platform/mac/editing/pasteboard/paste-text-014-expected.txt: Updated to reflect cleanup.
- 4:28 PM Changeset in webkit [102845] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium test expectations update. Skip a problematic
test which will be fixed with the fix for an existing bug, and
mark another failure; the latter seems serious and a high-priority
bug has been filed.
- platform/chromium/test_expectations.txt:
- 4:24 PM Changeset in webkit [102844] by
-
- 5 edits in tags/Safari-535.13.1/Source
Versioning.
- 4:16 PM Changeset in webkit [102843] by
-
- 3 edits in trunk/Source/WebKit
[BlackBerry] Refactor code and add some debug messages in backing store
https://bugs.webkit.org/show_bug.cgi?id=74539
Patch by Jacky Jiang <zhajiang@rim.com> on 2011-12-14
Reviewed by Antonio Gomes.
Refactor and get rid of the confusing and unnecessary
'renderContentOnly' flag from the family of render methods in the
backing store.
Remove the overload of the render method that takes a list of rects from
the backing store since it is just a for loop and only one place calls it.
Add a debug message to illustrate when we start showing checkerboard and
when we stop.
Fix the debug messages in the DEBUG_BACKINGSTORE so that they actually compile
and add a new message for debugging WebCore invalidation requests.
The original author is Adam Treat <atreat@rim.com>
- blackberry/Api/BackingStore.cpp:
(BlackBerry::WebKit::BackingStorePrivate::resumeScreenAndBackingStoreUpdates):
(BlackBerry::WebKit::BackingStorePrivate::repaint):
(BlackBerry::WebKit::BackingStorePrivate::slowScroll):
(BlackBerry::WebKit::BackingStorePrivate::renderDirectToWindow):
(BlackBerry::WebKit::BackingStorePrivate::render):
(BlackBerry::WebKit::BackingStorePrivate::renderVisibleContents):
(BlackBerry::WebKit::BackingStorePrivate::renderBackingStore):
(BlackBerry::WebKit::BackingStorePrivate::blitVisibleContents):
(BlackBerry::WebKit::BackingStorePrivate::blitContents):
(BlackBerry::WebKit::BackingStorePrivate::updateTile):
(BlackBerry::WebKit::BackingStorePrivate::invalidateWindow):
- blackberry/Api/BackingStore_p.h:
- 4:15 PM Changeset in webkit [102842] by
-
- 4 edits in trunk/LayoutTests
Add new expected results that were missed in r102837.
- fast/css/getComputedStyle/computed-style-expected.txt:
- fast/css/getComputedStyle/computed-style-without-renderer-expected.txt:
- svg/css/getComputedStyle-basic-expected.txt:
- 4:12 PM Changeset in webkit [102841] by
-
- 2 edits in trunk/Tools
Unreviewed, rolling out r102761.
http://trac.webkit.org/changeset/102761
https://bugs.webkit.org/show_bug.cgi?id=74485
we came up with a better fix than this (see comments in bug
74485)
- Scripts/prepare-ChangeLog:
(generateFunctionLists):
(printDiff):
(diffCommand):
(statusCommand):
(createPatchCommand):
(generateFileList):
(isAddedStatus):
(isConflictStatus):
(statusDescription):
(extractLineRange):
- 3:59 PM Changeset in webkit [102840] by
-
- 1 copy in tags/Safari-535.13.1
New Tag.
- 3:55 PM Changeset in webkit [102839] by
-
- 4 edits in trunk
Work around a bug in the MSVC2005 compiler
https://bugs.webkit.org/show_bug.cgi?id=74550
Reviewed by Sam Weinig.
Source/JavaScriptCore:
Add template parameters for the return types of the partial specializations of BoundFunctionImpl.
- wtf/Functional.h:
(WTF::R):
Tools:
Re-enable tests.
- TestWebKitAPI/Tests/WTF/Functional.cpp:
- 3:50 PM Changeset in webkit [102838] by
-
- 14 edits16 adds in trunk
[chromium] Refactor tile drawing to be more data-driven
https://bugs.webkit.org/show_bug.cgi?id=73059
Reviewed by James Robinson.
Source/WebCore:
Partially tested by compositor layout tests. Debug borders and
checkerboarding tested manually.
This is the first part of a move towards rendering quads on screen
from a bag of data rather than in virtual CCLayerImpl::draw functions.
CCDrawQuad-derived classes store material-specific pieces of data to
use when rendering. CCLayerImpl classes now create these CCDrawQuad
objects rather than issuing direct GL commands. Where this data is
shared between quads that come from the same layer, that data is
stored in a CCSharedQuadState object rather than duplicated.
CCRenderPass is the class that holds the list of quads and the target
surface that they draw into. Drawing a frame consists of drawing a
series of render passes onto their respective surfaces.
CCLayerTreeHostImpl constructs these render passes from the output of
calculateDrawTransformsAndVisibility by asking each layer to insert
quads into a list and hands them off to LayerRendererChromium for
rendering.
- WebCore.gypi:
- platform/graphics/chromium/LayerRendererChromium.cpp:
(WebCore::LayerRendererChromium::clearSurfaceForDebug):
(WebCore::LayerRendererChromium::beginDrawingFrame):
(WebCore::LayerRendererChromium::drawRenderPass):
(WebCore::LayerRendererChromium::drawQuad):
(WebCore::LayerRendererChromium::drawDebugBorderQuad):
(WebCore::LayerRendererChromium::drawRenderSurfaceQuad):
(WebCore::LayerRendererChromium::drawSolidColorQuad):
(WebCore::tileUniformLocation):
(WebCore::findTileProgramUniforms):
(WebCore::LayerRendererChromium::drawTileQuad):
(WebCore::LayerRendererChromium::drawCustomLayerQuad):
(WebCore::LayerRendererChromium::finishDrawingFrame):
(WebCore::LayerRendererChromium::useRenderSurface):
- platform/graphics/chromium/LayerRendererChromium.h:
- platform/graphics/chromium/ShaderChromium.h:
(WebCore::FragmentTexAlphaBinding::edgeLocation):
(WebCore::FragmentTexAlphaBinding::fragmentTexTransformLocation):
(WebCore::FragmentTexOpaqueBinding::edgeLocation):
(WebCore::FragmentTexOpaqueBinding::fragmentTexTransformLocation):
- platform/graphics/chromium/TiledLayerChromium.cpp:
(WebCore::TiledLayerChromium::pushPropertiesTo):
- platform/graphics/chromium/cc/CCCustomLayerDrawQuad.cpp: Added.
(WebCore::CCCustomLayerDrawQuad::create):
(WebCore::CCCustomLayerDrawQuad::CCCustomLayerDrawQuad):
- platform/graphics/chromium/cc/CCCustomLayerDrawQuad.h: Added.
(WebCore::CCCustomLayerDrawQuad::layer):
- platform/graphics/chromium/cc/CCDebugBorderDrawQuad.cpp: Added.
(WebCore::CCDebugBorderDrawQuad::create):
(WebCore::CCDebugBorderDrawQuad::CCDebugBorderDrawQuad):
- platform/graphics/chromium/cc/CCDebugBorderDrawQuad.h: Added.
(WebCore::CCDebugBorderDrawQuad::color):
(WebCore::CCDebugBorderDrawQuad::width):
- platform/graphics/chromium/cc/CCDrawQuad.cpp: Added.
(WebCore::CCDrawQuad::CCDrawQuad):
(WebCore::CCDrawQuad::toDebugBorderDrawQuad):
(WebCore::CCDrawQuad::toRenderSurfaceDrawQuad):
(WebCore::CCDrawQuad::toSolidColorDrawQuad):
(WebCore::CCDrawQuad::toTileDrawQuad):
(WebCore::CCDrawQuad::toCustomLayerDrawQuad):
- platform/graphics/chromium/cc/CCDrawQuad.h: Added.
(WebCore::CCDrawQuad::quadRect):
(WebCore::CCDrawQuad::quadTransform):
(WebCore::CCDrawQuad::layerTransform):
(WebCore::CCDrawQuad::layerRect):
(WebCore::CCDrawQuad::clipRect):
(WebCore::CCDrawQuad::opacity):
(WebCore::CCDrawQuad::drawsOpaque):
(WebCore::CCDrawQuad::needsBlending):
(WebCore::CCDrawQuad::isLayerAxisAlignedIntRect):
(WebCore::CCDrawQuad::material):
- platform/graphics/chromium/cc/CCLayerImpl.cpp:
(WebCore::CCLayerImpl::createSharedQuadState):
(WebCore::CCLayerImpl::appendQuads):
(WebCore::CCLayerImpl::appendDebugBorderQuad):
(WebCore::CCLayerImpl::quadTransform):
- platform/graphics/chromium/cc/CCLayerImpl.h:
- platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:
(WebCore::CCLayerTreeHostImpl::trackDamageForAllSurfaces):
(WebCore::computeScreenSpaceTransformForSurface):
(WebCore::damageInSurfaceSpace):
(WebCore::CCLayerTreeHostImpl::calculateRenderPasses):
(WebCore::CCLayerTreeHostImpl::drawLayers):
- platform/graphics/chromium/cc/CCLayerTreeHostImpl.h:
- platform/graphics/chromium/cc/CCRenderPass.cpp: Added.
(WebCore::CCRenderPass::create):
(WebCore::CCRenderPass::CCRenderPass):
(WebCore::CCRenderPass::appendQuadsForLayer):
(WebCore::CCRenderPass::appendQuadsForRenderSurfaceLayer):
- platform/graphics/chromium/cc/CCRenderPass.h: Added.
(WebCore::CCRenderPass::quadList):
(WebCore::CCRenderPass::targetSurface):
(WebCore::CCRenderPass::setSurfaceDamageRect):
(WebCore::CCRenderPass::surfaceDamageRect):
- platform/graphics/chromium/cc/CCRenderSurfaceDrawQuad.cpp: Added.
(WebCore::CCRenderSurfaceDrawQuad::create):
(WebCore::CCRenderSurfaceDrawQuad::CCRenderSurfaceDrawQuad):
- platform/graphics/chromium/cc/CCRenderSurfaceDrawQuad.h: Added.
(WebCore::CCRenderSurfaceDrawQuad::layer):
(WebCore::CCRenderSurfaceDrawQuad::surfaceDamageRect):
- platform/graphics/chromium/cc/CCSharedQuadState.cpp: Added.
(WebCore::CCSharedQuadState::create):
(WebCore::CCSharedQuadState::CCSharedQuadState):
(WebCore::CCSharedQuadState::isLayerAxisAlignedIntRect):
- platform/graphics/chromium/cc/CCSharedQuadState.h: Added.
(WebCore::CCSharedQuadState::quadTransform):
(WebCore::CCSharedQuadState::layerTransform):
(WebCore::CCSharedQuadState::layerRect):
(WebCore::CCSharedQuadState::clipRect):
(WebCore::CCSharedQuadState::opacity):
(WebCore::CCSharedQuadState::isOpaque):
- platform/graphics/chromium/cc/CCSolidColorDrawQuad.cpp: Added.
(WebCore::CCSolidColorDrawQuad::create):
(WebCore::CCSolidColorDrawQuad::CCSolidColorDrawQuad):
- platform/graphics/chromium/cc/CCSolidColorDrawQuad.h: Added.
(WebCore::CCSolidColorDrawQuad::color):
- platform/graphics/chromium/cc/CCTileDrawQuad.cpp: Added.
(WebCore::CCTileDrawQuad::create):
(WebCore::CCTileDrawQuad::CCTileDrawQuad):
- platform/graphics/chromium/cc/CCTileDrawQuad.h: Added.
(WebCore::CCTileDrawQuad::textureId):
(WebCore::CCTileDrawQuad::textureOffset):
(WebCore::CCTileDrawQuad::textureSize):
(WebCore::CCTileDrawQuad::textureFilter):
(WebCore::CCTileDrawQuad::swizzleContents):
(WebCore::CCTileDrawQuad::leftEdgeAA):
(WebCore::CCTileDrawQuad::topEdgeAA):
(WebCore::CCTileDrawQuad::rightEdgeAA):
(WebCore::CCTileDrawQuad::bottomEdgeAA):
(WebCore::CCTileDrawQuad::isAntialiased):
- platform/graphics/chromium/cc/CCTiledLayerImpl.cpp:
(WebCore::CCTiledLayerImpl::CCTiledLayerImpl):
(WebCore::CCTiledLayerImpl::quadTransform):
(WebCore::CCTiledLayerImpl::appendQuads):
- platform/graphics/chromium/cc/CCTiledLayerImpl.h:
(WebCore::CCTiledLayerImpl::setContentsSwizzled):
(WebCore::CCTiledLayerImpl::contentsSwizzled):
LayoutTests:
Mark three tests as failing with small pixel differences. These just
need rebaselining.
- platform/chromium/test_expectations.txt:
- 3:39 PM Changeset in webkit [102837] by
-
- 19 edits in trunk
Implement flexDirection and flexWrap and make flexFlow a proper shorthand.
https://bugs.webkit.org/show_bug.cgi?id=74542
Reviewed by Tony Chang.
Source/WebCore:
In a followup patch, I'll cleanup all the *Flow methods in RenderFlexibleBox.
Existing tests cover all the rendering behaviors, so only need to test
the css property parsing.
- css/CSSComputedStyleDeclaration.cpp:
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
- css/CSSMutableStyleDeclaration.cpp:
(WebCore::CSSMutableStyleDeclaration::getPropertyValue):
- css/CSSParser.cpp:
(WebCore::CSSParser::parseValue):
- css/CSSPrimitiveValueMappings.h:
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
(WebCore::CSSPrimitiveValue::operator EFlexDirection):
- css/CSSProperty.cpp:
(WebCore::CSSProperty::isInheritedProperty):
- css/CSSPropertyLonghand.cpp:
(WebCore::initShorthandMap):
- css/CSSPropertyNames.in:
- css/CSSStyleApplyProperty.cpp:
(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
- rendering/RenderBox.cpp:
(WebCore::RenderBox::sizesToIntrinsicLogicalWidth):
- rendering/RenderFlexibleBox.cpp:
(WebCore::RenderFlexibleBox::isColumnFlow):
(WebCore::RenderFlexibleBox::isLeftToRightFlow):
(WebCore::RenderFlexibleBox::layoutAndPlaceChildren):
(WebCore::RenderFlexibleBox::alignChildren):
- rendering/style/RenderStyle.h:
(WebCore::InheritedFlags::flexDirection):
(WebCore::InheritedFlags::isColumnFlexDirection):
(WebCore::InheritedFlags::setFlexDirection):
(WebCore::InheritedFlags::initialFlexDirection):
- rendering/style/RenderStyleConstants.h:
- rendering/style/StyleFlexibleBoxData.cpp:
(WebCore::StyleFlexibleBoxData::StyleFlexibleBoxData):
(WebCore::StyleFlexibleBoxData::operator==):
- rendering/style/StyleFlexibleBoxData.h:
LayoutTests:
- css3/flexbox/css-properties-expected.txt:
- css3/flexbox/script-tests/css-properties.js:
(testFlexFlowValue):
- 3:32 PM Changeset in webkit [102836] by
-
- 8 edits in trunk/Source
Enable notifications on Mac.
Reviewed by Sam Weinig.
Source/JavaScriptCore:
- Configurations/FeatureDefines.xcconfig:
Source/WebCore:
- Configurations/FeatureDefines.xcconfig:
Source/WebKit/mac:
- Configurations/FeatureDefines.xcconfig:
Source/WebKit2:
- Configurations/FeatureDefines.xcconfig:
- 3:21 PM Changeset in webkit [102835] by
-
- 2 edits in trunk/Source/WebCore
COMPILE_ASSERT in CSSStyleSelector.cpp doesn't compile on Windows
https://bugs.webkit.org/show_bug.cgi?id=74327
Reviewed by Darin Adler.
Always use unsigned instead of bool and unsigned in the bitfields of RuleData to shrink
its size under MSVC.
Unlike gcc and clang, MSVC pads each consecutive member variables of the same type
in bitfields. e.g. if you have:
sturct AB {
unsigned m_1 : 31;
bool m_2 : 1;
}
then MSVC pads m_1 and allocates sizeof(unsigned) * 2 for AB whereas gcc and clang
only allocate sizeof(unsigned) * 1 for AB.
- css/CSSStyleSelector.cpp:
(WebCore::RuleData::RuleData):
- 3:18 PM Changeset in webkit [102834] by
-
- 19 edits2 adds in trunk
NodeChildList shouldn't be in NodeListNodeData
https://bugs.webkit.org/show_bug.cgi?id=73969
Source/WebCore:
Reviewed by Sam Weinig.
Move NodeChildList out of NodeListNodeData to separate it from the other node lists in order to
resolve the bug 73853. Unlike other DynamicNodeList, we don't need to invalidate NodeChildList
on ancestors when children change. Moving ChildNodeList out of NodeListNodeData makes this difference
apparent and makes DynamicNodeList::Caches in NodeListNodeData always held by a DynamicSubtreeNodeList,
eliminating the need for hasOwnCaches() checks in various places.
Also renamed the existing DynamicNodeList to DynamicSubtreeNodeList and re-introduced DynamicNodeList
from which DynamicSubtreeNodeList and ChildNodeList both inherit to share the code for itemWithName.
In addition, renamed registerDynamicNodeList and unregisterDynamicNodeList, which updates a counter for
TreeScope::hasNodeListCaches, to registerDynamicSubtreeNodeList and unregisterDynamicSubtreeNodeList
respectively. They are no longer called by ChildNodeList in order to avoid walking up the DOM tree
inside invalidateNodeListsCacheAfterAttributeChanged and invalidateNodeListsCacheAfterChildrenChanged.
Test: fast/dom/childnode-item-after-itemname.html
- bindings/js/JSNodeListCustom.cpp:
(WebCore::JSNodeListOwner::isReachableFromOpaqueRoots):
- dom/ChildNodeList.cpp:
(WebCore::ChildNodeList::ChildNodeList):
(WebCore::ChildNodeList::length):
(WebCore::ChildNodeList::item):
(WebCore::ChildNodeList::nodeMatches):
- dom/ChildNodeList.h:
- dom/ClassNodeList.cpp:
(WebCore::ClassNodeList::ClassNodeList):
(WebCore::ClassNodeList::~ClassNodeList):
- dom/ClassNodeList.h:
- dom/ContainerNode.cpp:
(WebCore::ContainerNode::childrenChanged):
- dom/DynamicNodeList.cpp:
(WebCore::DynamicSubtreeNodeList::DynamicSubtreeNodeList):
(WebCore::DynamicSubtreeNodeList::~DynamicSubtreeNodeList):
(WebCore::DynamicSubtreeNodeList::length):
(WebCore::DynamicSubtreeNodeList::itemForwardsFromCurrent):
(WebCore::DynamicSubtreeNodeList::itemBackwardsFromCurrent):
(WebCore::DynamicSubtreeNodeList::item):
(WebCore::DynamicNodeList::itemWithName):
(WebCore::DynamicSubtreeNodeList::isDynamicNodeList):
(WebCore::DynamicSubtreeNodeList::invalidateCache):
(WebCore::DynamicSubtreeNodeList::Caches::Caches):
(WebCore::DynamicSubtreeNodeList::Caches::create):
(WebCore::DynamicSubtreeNodeList::Caches::reset):
- dom/DynamicNodeList.h:
(WebCore::DynamicNodeList::DynamicNodeList):
(WebCore::DynamicNodeList::~DynamicNodeList):
(WebCore::DynamicNodeList::node):
(WebCore::DynamicSubtreeNodeList::rootNode):
- dom/NameNodeList.cpp:
(WebCore::NameNodeList::NameNodeList):
(WebCore::NameNodeList::~NameNodeList):
- dom/NameNodeList.h:
- dom/Node.cpp:
(WebCore::Node::childNodes):
(WebCore::Node::registerDynamicSubtreeNodeList):
(WebCore::Node::unregisterDynamicSubtreeNodeList):
(WebCore::Node::invalidateNodeListsCacheAfterAttributeChanged):
(WebCore::Node::invalidateNodeListsCacheAfterChildrenChanged):
(WebCore::Node::removeCachedClassNodeList):
(WebCore::Node::removeCachedNameNodeList):
(WebCore::Node::removeCachedTagNodeList):
(WebCore::Node::removeCachedLabelsNodeList):
(WebCore::NodeListsNodeData::invalidateCaches):
(WebCore::NodeListsNodeData::isEmpty):
(WebCore::NodeRareData::clearChildNodeListCache):
- dom/Node.h:
- dom/NodeRareData.h:
(WebCore::NodeRareData::nodeLists):
(WebCore::NodeRareData::ensureChildNodeListCache):
- dom/TagNodeList.cpp:
(WebCore::TagNodeList::TagNodeList):
(WebCore::TagNodeList::~TagNodeList):
- dom/TagNodeList.h:
- html/LabelsNodeList.cpp:
(WebCore::LabelsNodeList::LabelsNodeList):
- html/LabelsNodeList.h:
LayoutTests:
Added a regression test for ChildNodeList; it catches a bug caught in the review process.
- fast/dom/childnode-item-after-itemname-expected.txt: Added.
- fast/dom/childnode-item-after-itemname.html: Added.
- 3:16 PM Changeset in webkit [102833] by
-
- 18 edits in trunk/Source/WebCore
Push more member functions from EditCommand to CompositeEditCommand
https://bugs.webkit.org/show_bug.cgi?id=74249
Reviewed by Enrica Casucci.
Moved startingRootEditableElement and endingRootEditableElement from EditCommand to EditCommandComposition,
and isTypingCommand, preservesTypingStyle, shouldRetainAutocorrectionIndicator,
setShouldRetainAutocorrectionIndicator, and shouldStopCaretBlinking from EditCommand to CompositeEditCommand.
Also removed EditCommand::updateLayout().
- editing/ApplyBlockElementCommand.cpp:
(WebCore::ApplyBlockElementCommand::doApply):
- editing/ApplyStyleCommand.cpp:
(WebCore::ApplyStyleCommand::applyBlockStyle):
(WebCore::ApplyStyleCommand::applyInlineStyle):
- editing/CompositeEditCommand.cpp:
(WebCore::EditCommandComposition::EditCommandComposition):
(WebCore::EditCommandComposition::setStartingSelection):
(WebCore::EditCommandComposition::setEndingSelection):
(WebCore::CompositeEditCommand::preservesTypingStyle):
(WebCore::CompositeEditCommand::isTypingCommand):
(WebCore::CompositeEditCommand::shouldRetainAutocorrectionIndicator):
(WebCore::CompositeEditCommand::setShouldRetainAutocorrectionIndicator):
(WebCore::CompositeEditCommand::addBlockPlaceholderIfNeeded):
(WebCore::CompositeEditCommand::moveParagraphContentsToNewBlockIfNecessary):
(WebCore::CompositeEditCommand::moveParagraphs):
- editing/CompositeEditCommand.h:
(WebCore::EditCommandComposition::startingRootEditableElement):
(WebCore::EditCommandComposition::endingRootEditableElement):
(WebCore::CompositeEditCommand::shouldStopCaretBlinking):
- editing/DeleteSelectionCommand.cpp:
(WebCore::DeleteSelectionCommand::removeNode):
(WebCore::DeleteSelectionCommand::fixupWhitespace):
- editing/EditCommand.cpp:
(WebCore::EditCommand::apply):
(WebCore::EditCommand::unapply):
(WebCore::EditCommand::reapply):
(WebCore::EditCommand::setStartingSelection):
(WebCore::EditCommand::setEndingSelection):
(WebCore::EditCommand::setParent):
- editing/EditCommand.h:
(WebCore::EditCommand::isEditCommandComposition):
- editing/Editor.cpp:
(WebCore::dispatchEditableContentChangedEvents):
(WebCore::Editor::appliedEditing):
(WebCore::Editor::unappliedEditing):
(WebCore::Editor::reappliedEditing):
- editing/Editor.h:
(WebCore::Editor::lastEditCommand):
- editing/FrameSelection.cpp:
(WebCore::FrameSelection::updateAppearance):
- editing/IndentOutdentCommand.cpp:
(WebCore::IndentOutdentCommand::outdentParagraph):
- editing/InsertLineBreakCommand.cpp:
(WebCore::InsertLineBreakCommand::doApply):
- editing/InsertParagraphSeparatorCommand.cpp:
(WebCore::InsertParagraphSeparatorCommand::doApply):
- editing/TypingCommand.cpp:
(WebCore::TypingCommand::lastTypingCommandIfStillOpenForTyping):
- editing/TypingCommand.h:
(WebCore::TypingCommand::shouldRetainAutocorrectionIndicator):
- 3:08 PM Changeset in webkit [102832] by
-
- 2 edits in trunk/Source/WebCore
Fix compile on gcc on Mac.
css/CSSStyleSelector.cpp:1254:166: error: unused parameter 'regionForStyling' [-Werror,-Wunused-parameter,3]
css/CSSStyleSelector.cpp:1425:134: error: unused parameter 'regionForStyling' [-Werror,-Wunused-parameter,3]
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::styleForElement):
(WebCore::CSSStyleSelector::pseudoStyleForElement):
- 3:03 PM Changeset in webkit [102831] by
-
- 2 edits in trunk/Source/JavaScriptCore
Remove definition of old ENABLE(YARR) macro
<http://webkit.org/b/74532>
Reviewed by Darin Adler.
- wtf/Platform.h: Removed ENABLE_YARR macros.
- 2:57 PM Changeset in webkit [102830] by
-
- 3 edits1 copy4 deletes in trunk/LayoutTests
Create reftest for outline-sides-in-region
https://bugs.webkit.org/show_bug.cgi?id=74428
Patch by Ethan Malasky <emalasky@adobe.com> on 2011-12-14
Reviewed by Darin Adler.
- fast/regions/outline-sides-in-region-expected.html: Added.
- fast/regions/outline-sides-in-region.html:
- platform/chromium/test_expectations.txt:
- platform/efl/fast/regions/outline-sides-in-region-expected.png: Removed.
- platform/efl/fast/regions/outline-sides-in-region-expected.txt: Removed.
- platform/mac/fast/regions/outline-sides-in-region-expected.png: Removed.
- platform/mac/fast/regions/outline-sides-in-region-expected.txt: Removed.
- 2:52 PM Changeset in webkit [102829] by
-
- 4 edits3 adds in trunk
<rdar://problem/10576732> and https://bugs.webkit.org/show_bug.cgi?id=74533
REGRESSION(r102619): Reproducible crash closing window with video + poster image inside an object element
Reviewed by Darin Adler.
Source/WebCore:
Test: media/crash-closing-page-with-media-as-plugin-fallback.html
Switch HTMLPlugInImageElement from using document activation callbacks to using the ActiveDOMObject
mechanism which will prevent the unnecessary (and crashy) work at Document teardown:
- html/HTMLPlugInImageElement.cpp:
(WebCore::HTMLPlugInImageElement::HTMLPlugInImageElement):
(WebCore::HTMLPlugInImageElement::canSuspend):
(WebCore::HTMLPlugInImageElement::suspend):
(WebCore::HTMLPlugInImageElement::resume):
- html/HTMLPlugInImageElement.h:
LayoutTests:
- media/crash-closing-page-with-media-as-plugin-fallback-expected.txt: Added.
- media/crash-closing-page-with-media-as-plugin-fallback.html: Added.
- media/resources/video-with-poster-as-object-fallback.html: Added.
- 2:38 PM Changeset in webkit [102828] by
-
- 2 edits in trunk/Source/WebCore
[chromium] Compositor needs to set texture filtering on canvas layers
https://bugs.webkit.org/show_bug.cgi?id=74530
Reviewed by James Robinson.
- platform/graphics/chromium/cc/CCCanvasLayerImpl.cpp:
(WebCore::CCCanvasLayerImpl::draw):
- 2:21 PM Changeset in webkit [102827] by
-
- 1 delete in branches/safari-534.54-branch/safari-534.53-branch
delete branch
- 2:20 PM Changeset in webkit [102826] by
-
- 1 copy in branches/safari-534.54-branch/safari-534.53-branch
New branch.
- 2:19 PM Changeset in webkit [102825] by
-
- 2 edits in trunk/Source/WebCore
Remove added calls to CSSStyleSelector to gain back another 2% in page cyclers
https://bugs.webkit.org/show_bug.cgi?id=74537
Reviewed by Ojan Vafai.
In r102234, calls to initForRegionStyling() were added in CSSStyleSelector.
There's still a 2% perf regression in chromium page cyclers, so try removing
these calls.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::styleForElement):
(WebCore::CSSStyleSelector::pseudoStyleForElement):
- 2:13 PM Changeset in webkit [102824] by
-
- 2 edits in trunk/Tools
[Qt] Test fonts are not used with Qt5
https://bugs.webkit.org/show_bug.cgi?id=72513
My last unreviewed buildfix for this crazy bug.
- qmake/mkspecs/features/features.prf:
- 2:13 PM Changeset in webkit [102823] by
-
- 319 edits5 copies3 moves64 adds in branches/safari-534.54-branch
Ensure that safari-534.54-branch contains all changes from safari-534.53-branch.
- 2:09 PM Changeset in webkit [102822] by
-
- 2 edits in trunk/Source/WebKit/qt
[Qt] DeviceOrientationClientQt should initialize m_controller to zero.
https://bugs.webkit.org/show_bug.cgi?id=74522
Patch by Alexander Færøy <ahf@0x90.dk> on 2011-12-14
Reviewed by Kenneth Rohde Christiansen.
- WebCoreSupport/DeviceOrientationProviderQt.cpp:
(WebCore::DeviceOrientationProviderQt::DeviceOrientationProviderQt):
- 2:00 PM Changeset in webkit [102821] by
-
- 2 edits in trunk/Tools
Another attempt at fixing the Windows build.
Disable all the tests until I can figure out what's going on here.
- TestWebKitAPI/Tests/WTF/Functional.cpp:
- 1:53 PM Changeset in webkit [102820] by
-
- 2 edits in trunk/LayoutTests
Skip fast/forms/select/menulist-onchange-fired-with-key-up-down.html on Mac since
it has been failing since it was introduced. The failure is tracked by the bug 74384.
- platform/mac/Skipped:
- 1:30 PM Changeset in webkit [102819] by
-
- 2 edits in trunk/Source/WebKit2
<rdar://problem/10573872> NPN_GetValueForURL returns wrong value for NPNURLVProxy
Reviewed by Anders Carlsson.
- PluginProcess/PluginControllerProxy.cpp:
(WebKit::PluginControllerProxy::proxiesForURL): Fix a copy-paste error.
- 1:27 PM Changeset in webkit [102818] by
-
- 2 edits in trunk/Tools
Fix the Windows build.
Disable some of the tests for now.
- TestWebKitAPI/Tests/WTF/Functional.cpp:
- 1:25 PM Changeset in webkit [102817] by
-
- 12 edits in trunk/Source
[chromium] Plumb through flag for enabling partial swap
https://bugs.webkit.org/show_bug.cgi?id=74513
Patch by Jonathan Backer <backer@chromium.org> on 2011-12-14
Reviewed by James Robinson.
Source/WebCore:
- page/Settings.h:
(WebCore::Settings::setPartialSwapEnabled):
(WebCore::Settings::partialSwapEnabled):
- platform/graphics/chromium/LayerRendererChromium.cpp:
(WebCore::LayerRendererChromium::initialize):
- platform/graphics/chromium/cc/CCLayerTreeHost.h:
(WebCore::CCSettings::CCSettings):
Source/WebKit/chromium:
- public/WebSettings.h:
- public/platform/WebLayerTreeView.h:
(WebKit::WebLayerTreeView::Settings::Settings):
- src/WebLayerTreeView.cpp:
(WebKit::WebLayerTreeView::Settings::operator CCSettings):
- src/WebSettingsImpl.cpp:
(WebKit::WebSettingsImpl::setPartialSwapEnabled):
- src/WebSettingsImpl.h:
- src/WebViewImpl.cpp:
(WebKit::WebViewImpl::setIsAcceleratedCompositingActive):
- 1:21 PM Changeset in webkit [102816] by
-
- 6 edits in trunk/Source/WebCore
[skia] cache typeface in FontPlatformData
https://bugs.webkit.org/show_bug.cgi?id=74415
Reviewed by Stephen White.
No new tests. Existing tests apply, this is just an optimization
to avoid looking up the typeface on each drawText call.
- platform/graphics/chromium/FontChromiumWin.cpp:
(WebCore::TransparencyAwareFontPainter::TransparencyAwareGlyphPainter::drawGlyphs):
(WebCore::Font::drawGlyphs):
- platform/graphics/chromium/FontPlatformDataChromiumWin.cpp:
(WebCore::createTypefaceFromHFont):
(WebCore::FontPlatformData::FontPlatformData):
(WebCore::FontPlatformData::operator=):
(WebCore::FontPlatformData::~FontPlatformData):
- platform/graphics/chromium/FontPlatformDataChromiumWin.h:
(WebCore::FontPlatformData::typeface):
(WebCore::FontPlatformData::lfQuality):
(WebCore::FontPlatformData::hash):
(WebCore::FontPlatformData::operator==):
- platform/graphics/skia/SkiaFontWin.cpp:
(WebCore::setupPaintForFont):
(WebCore::paintSkiaText):
- platform/graphics/skia/SkiaFontWin.h:
- 1:16 PM Changeset in webkit [102815] by
-
- 17 edits2 adds in trunk
Make -webkit-filter animatable
https://bugs.webkit.org/show_bug.cgi?id=68476
Source/WebCore:
Reviewed by Chris Marrin.
Add -webkit-filter to the list of CSS properties that are animatable. Animate
it like we do transforms, by looking for matching lists of filter functions.
Each kind of filter operation has a blend() method that handles blending
for that filter.
Test: css3/filters/filter-animation.html
- GNUmakefile.list.am: Add FilterOperation.cpp to the build.
- Target.pri: Ditto
- WebCore.gypi: Ditto
- WebCore.vcproj/WebCore.vcproj: Ditto
- WebCore.xcodeproj/project.pbxproj: Ditto
- page/animation/AnimationBase.cpp:
(WebCore::blendFunc): New blendFunc() for FilterOperations, which does per-filter blending.
(WebCore::AnimationBase::ensurePropertyMap): Make PropertyWrapper for filters.
(WebCore::AnimationBase::AnimationBase): Adjust initialization order.
- page/animation/AnimationBase.h: Adjusted the member variable order to minimize padding.
(WebCore::AnimationBase::filterFunctionListsMatch): Accessor for the flag.
- page/animation/ImplicitAnimation.cpp:
(WebCore::ImplicitAnimation::reset):
(WebCore::ImplicitAnimation::validateTransformFunctionList): Adjust comment. The "is valid" terminology is confusing.
(WebCore::ImplicitAnimation::checkForMatchingFilterFunctionLists): New method to check for matching lists
of filter functions.
- page/animation/ImplicitAnimation.h:
- page/animation/KeyframeAnimation.cpp:
(WebCore::KeyframeAnimation::KeyframeAnimation):
(WebCore::KeyframeAnimation::checkForMatchingFilterFunctionLists): New method to check for matching lists
of filter functions.
- page/animation/KeyframeAnimation.h:
- rendering/style/FilterOperation.cpp: Added.
(WebCore::BasicColorMatrixFilterOperation::blend):
(WebCore::BasicColorMatrixFilterOperation::passthroughAmount):
(WebCore::BasicComponentTransferFilterOperation::blend):
(WebCore::BasicComponentTransferFilterOperation::passthroughAmount): Different filters have
different values for m_amount for the "passthrough" behavior. This method returns the appropriate value.
(WebCore::GammaFilterOperation::blend):
(WebCore::BlurFilterOperation::blend):
(WebCore::DropShadowFilterOperation::blend):
- rendering/style/FilterOperation.h:
(WebCore::FilterOperation::blend):
(WebCore::PassthroughFilterOperation::create): New "no-op" filter.
(WebCore::PassthroughFilterOperation::operator==):
(WebCore::PassthroughFilterOperation::PassthroughFilterOperation):
- rendering/style/FilterOperations.cpp:
(WebCore::FilterOperations::operationsMatch):
- rendering/style/FilterOperations.h:
LayoutTests:
Reviewed by Chris Marrin.
New test for filter animation, and enhancements to animation-test-helpers.js
for filters.
- animations/resources/animation-test-helpers.js:
(getFilterParameters):
(filterParametersMatch):
(checkExpectedValue):
- css3/filters/filter-animation.html: Added.
- 1:14 PM Changeset in webkit [102814] by
-
- 8 edits in trunk
Broaden support for mutation observation of attributes
https://bugs.webkit.org/show_bug.cgi?id=74448
Reviewed by Ryosuke Niwa.
Source/WebCore:
The previously-landed MutationObserver support for attributes was incomplete:
it didn't support mutations related to Attr nodes (methods on Attrs,
setAttributeNode/removeAttributeNode on Element, or methods on NamedNodeMap).
This patch adds full support of mutation observation for all these cases,
and adds test cases for all these situations.
- dom/Attr.cpp:
(WebCore::Attr::setValue): Enqueue a mutation record when Attr.value is set from JS.
(WebCore::Attr::childrenChanged): Enqueue a mutation record when an Attr's value
changes to due additions/removals of Text children.
- dom/Element.cpp:
(WebCore::Element::enqueueAttributesMutationRecordIfRequested): Previously a static,
expose as part of Element's interface to allow it to be re-used by NamedNodeMap and Attr.
(WebCore::Element::removeAttribute): Remove enqueue call now handled by NamedNodeMap.
(WebCore::Element::setAttributeInternal): Fixup call of enqueueAttributesMutationRecordIfRequested.
- dom/Element.h:
- dom/NamedNodeMap.cpp:
(WebCore::NamedNodeMap::setNamedItem): Enqueue a mutation record when an attribute
is changed via Element.attributes.setNamedItem from JS.
(WebCore::NamedNodeMap::removeNamedItem): Enqueue a mutation record when an
attribute is removed, either via Element.attributes.removeNamedItem or Element.removeAttribute.
LayoutTests:
Add tests covering attribute mutation via Attr nodes.
- fast/mutation/observe-attributes-expected.txt:
- fast/mutation/observe-attributes.html:
- 1:12 PM Keeping the Tree Green edited by
- Fix the list item for Chromium. (diff)
- 1:03 PM Keeping the Tree Green edited by
- Add a link to Chrome WebKit Merge calendar (diff)
- 12:59 PM Changeset in webkit [102813] by
-
- 4 edits in trunk
bind should handle member functions
https://bugs.webkit.org/show_bug.cgi?id=74529
Reviewed by Sam Weinig.
Source/JavaScriptCore:
Add FunctionWrapper partial specializations for member function pointers.
- wtf/Functional.h:
(WTF::C::):
Tools:
Add tests.
- TestWebKitAPI/Tests/WTF/Functional.cpp:
(TestWebKitAPI::A::A):
(TestWebKitAPI::A::f):
(TestWebKitAPI::A::addF):
(TestWebKitAPI::TEST):
- 12:56 PM Changeset in webkit [102812] by
-
- 2 edits in branches/subpixellayout/Source/WebCore
Fixing improper float conversions that had some unpleasant results with large numbers.
- 12:51 PM Changeset in webkit [102811] by
-
- 3 edits in trunk/Source/JavaScriptCore
DFG relies on returning a struct in registers
https://bugs.webkit.org/show_bug.cgi?id=74527
Reviewed by Geoff Garen.
This will not work on all platforms. Returning a uint64_t will more reliably achieve
what we want, on 32-bit platforms (on 64-bit, stick with the struct return).
- dfg/DFGOperations.cpp:
- dfg/DFGOperations.h:
(JSC::DFG::DFGHandler::dfgHandlerEncoded):
- 12:34 PM BuildingGtk edited by
- Add "sudo" for maximum copy and pasting glory (diff)
- 12:33 PM Changeset in webkit [102810] by
-
- 3 edits in trunk/Source/WebCore
Patch by Raymond Toy <Raymond Toy> on 2011-12-14
- platform/audio/Distance.h (WebCore):
Incorrect calculation for DistanceEffect linearGain
https://bugs.webkit.org/show_bug.cgi?id=72871
Reviewed by Kenneth Russell.
Tests still need to be written for all distance models. This
does not add a new API and just corrects an implementation error.
- platform/audio/Distance.cpp:
(WebCore::DistanceEffect::linearGain): Implement correct
linearGain function. (Fix proposed by davidgaleano@hotmail.com.)
- platform/audio/Distance.h: Add link to Open AL specification.
- 12:00 PM Changeset in webkit [102809] by
-
- 7 edits in trunk/Source/WebKit2
[Qt] [WK2] Move QWebPreferences out of QtWebPageProxy
https://bugs.webkit.org/show_bug.cgi?id=74525
Reviewed by Luiz Agostini.
This patch also uses internal WebKit API to set the Accelerate Compositing
directly instead of going thru QWebPreferencesPrivate. The previous approach was
always causing the QWebPreferences to be created making the "lazy initialization"
useless.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::QQuickWebViewPrivate):
(QQuickWebViewPrivate::initialize):
(QQuickWebViewPrivate::navigatorQtObjectEnabled):
(QQuickWebViewPrivate::setNavigatorQtObjectEnabled):
(QQuickWebViewExperimental::postMessage):
(QQuickWebView::preferences):
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/API/qt/qwebpreferences.cpp:
(QWebPreferencesPrivate::createPreferences):
(QWebPreferencesPrivate::testAttribute):
(QWebPreferencesPrivate::setAttribute):
(QWebPreferences::navigatorQtObjectEnabled):
(QWebPreferences::setNavigatorQtObjectEnabled):
(QWebPreferencesPrivate::preferencesRef):
- UIProcess/API/qt/qwebpreferences_p_p.h:
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::QtWebPageProxy):
- UIProcess/qt/QtWebPageProxy.h:
- 11:55 AM Changeset in webkit [102808] by
-
- 4 edits in trunk
Add unary and binary bind overloads
https://bugs.webkit.org/show_bug.cgi?id=74524
Reviewed by Sam Weinig.
Source/JavaScriptCore:
- wtf/Functional.h:
(WTF::R):
(WTF::FunctionWrapper::ResultType):
(WTF::bind):
Tools:
Add tests.
- TestWebKitAPI/Tests/WTF/Functional.cpp:
(TestWebKitAPI::TEST):
(TestWebKitAPI::multiplyByTwo):
(TestWebKitAPI::multiplyByOneAndAHalf):
(TestWebKitAPI::multiply):
(TestWebKitAPI::subtract):
- 11:49 AM Changeset in webkit [102807] by
-
- 5 edits in branches/safari-534.53-branch/Source
Versioning.
- 11:43 AM Changeset in webkit [102806] by
-
- 2 edits in trunk/Tools
[Qt] Test fonts are not used with Qt5
https://bugs.webkit.org/show_bug.cgi?id=72513
MIPS and SH4 buildfix after r102776 and r102795.
Patch by Holger Hans Peter Freyther <holger@moiji-mobile.com> on 2011-12-14
Reviewed by Csaba Osztrogonác.
- qmake/mkspecs/features/features.prf:
- 11:41 AM Changeset in webkit [102805] by
-
- 1 copy in tags/Safari-534.53.10
New tag.
- 11:38 AM Changeset in webkit [102804] by
-
- 2 edits in trunk/Source/WebKit2
[GTK] Page size should be 0,0 when view widget is not realized
https://bugs.webkit.org/show_bug.cgi?id=74523
Reviewed by Martin Robinson.
We currently return 1,1 because GTK+ initializes widget allocation
as -1,-1,1,1.
- UIProcess/API/gtk/PageClientImpl.cpp:
(WebKit::PageClientImpl::viewSize): Check whether widget is
realized and return IntSize() in that case.
- 11:33 AM Changeset in webkit [102803] by
-
- 4 edits in trunk/Source/WebCore
2011-12-14 Ilya Tikhonovsky <loislo@chromium.org>
Web Inspector: consider disabling network tracking while running the CPU profile.
https://bugs.webkit.org/show_bug.cgi?id=74221
The WebCore instrumentation on the backend affects the performance of inspected page.
As the result the CPU profiler's stats data are far away from the reality.
Solution: the profiler code will temporary disable the resource tracking on backend.
Side effect: the resource tree gets out of sinc because it uses Network Agent's notifications for updating the resource tree.
Solution: NetworkManager will report about the changes of the resource tracking state and ResourcePanel will re-fetch the resources tree.
Reviewed by Pavel Feldman.
- inspector/front-end/NetworkManager.js: (WebInspector.NetworkManager.prototype.enableResourceTracking.networkAgentEnabled): (WebInspector.NetworkManager.prototype.enableResourceTracking): (WebInspector.NetworkManager.prototype.disableResourceTracking.networkAgentDisabled): (WebInspector.NetworkManager.prototype.disableResourceTracking): (WebInspector.NetworkManager.prototype.inflightResourceForURL):
- inspector/front-end/ProfileView.js: (WebInspector.CPUProfileType.prototype.buttonClicked):
- inspector/front-end/ResourceTreeModel.js: (WebInspector.ResourceTreeModel): (WebInspector.ResourceTreeModel.prototype._onResourceTrackingEnabled):
- 11:18 AM Changeset in webkit [102802] by
-
- 2 edits in trunk/Source/WebCore
[GTK] Fix PlatformScreen::screenAvailableRect when there's no view widget
https://bugs.webkit.org/show_bug.cgi?id=74520
Reviewed by Martin Robinson.
Use the default screen to get the available screen area instead of
just returning an empty rectangle. This is useful for WebKit2,
since there's no view widget in the web process.
- platform/gtk/PlatformScreenGtk.cpp:
(WebCore::screenAvailableRect):
- 11:09 AM Changeset in webkit [102801] by
-
- 1 edit1 add in trunk
Add a manual test for caret blinking during forward deletion
https://bugs.webkit.org/show_bug.cgi?id=74494
Reviewed by Dan Bernstein.
Add a test to forward delete 200 characters. Caret should not blink during the deletion.
This is a follow up for r102413.
- ManualTests/caret-blink-during-forward-delete.html: Added.
- 10:59 AM Changeset in webkit [102800] by
-
- 5 edits2 adds in trunk
Media url with fragment may not load
https://bugs.webkit.org/show_bug.cgi?id=74443
Reviewed by Darin Adler.
Source/WebCore:
Test: media/media-extension-with-fragment.html
- html/HTMLMediaElement.cpp:
(WebCore::HTMLMediaElement::loadResource): Pass the KURL to MediaPlayer, let it extract a
String when it needs it.
- platform/graphics/MediaPlayer.cpp:
(WebCore::MediaPlayer::load): Take a KURL, not a String. Look for the file extension in the
last path component so we don't examine fragments and/or queries.
- platform/graphics/MediaPlayer.h:
LayoutTests:
- media/media-extension-with-fragment-expected.txt: Added.
- media/media-extension-with-fragment.html: Added.
- 10:52 AM Changeset in webkit [102799] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium test expectations update. Suppress another
intermittent compositing test failure.
- platform/chromium/test_expectations.txt:
- 10:47 AM Changeset in webkit [102798] by
-
- 2 edits in trunk/Source/WebCore
[BlackBerry] Remove some duplicate entries in Source/WebCore/PlatformBlackBerry.cmake
https://bugs.webkit.org/show_bug.cgi?id=74484
Patch by Jacky Jiang <zhajiang@rim.com> on 2011-12-14
Reviewed by Daniel Bates.
Trivial fix, so no new tests.
- PlatformBlackBerry.cmake:
- 10:36 AM Changeset in webkit [102797] by
-
- 7 edits in trunk/Source
Add back the callOnMainThread overload that takes a WTF::Function
https://bugs.webkit.org/show_bug.cgi?id=74512
Reviewed by Darin Adler.
Source/JavaScriptCore:
Add back the overload; the changes to WebCore should hopefully keep Windows building.
- wtf/MainThread.cpp:
(WTF::callFunctionObject):
(WTF::callOnMainThread):
- wtf/MainThread.h:
Source/WebCore:
Explicitly qualify the Function enum flag, since MSVC2005 is too stupid to disambiguate
the Function class template and the enum flag.
- bindings/js/JSDOMWindowCustom.cpp:
(WebCore::JSDOMWindow::getOwnPropertySlot):
(WebCore::JSDOMWindow::getOwnPropertyDescriptor):
- bindings/js/JSHistoryCustom.cpp:
(WebCore::JSHistory::getOwnPropertySlotDelegate):
(WebCore::JSHistory::getOwnPropertyDescriptorDelegate):
- bindings/js/JSLocationCustom.cpp:
(WebCore::JSLocation::getOwnPropertySlotDelegate):
(WebCore::JSLocation::getOwnPropertyDescriptorDelegate):
- 10:30 AM Changeset in webkit [102796] by
-
- 3 edits in trunk/Websites/bugs.webkit.org
Give a resize handle for sidebyside diffs.
https://bugs.webkit.org/show_bug.cgi?id=74465
Reviewed by Ryosuke Niwa.
This gives a drag handle so you can make the side-by-side
diff not be 50/50 on a per-file-diff basis. This is useful
for cases like new files where there's no value on the
left side.
- PrettyPatch/PrettyPatch.rb:
- code-review.js:
- 10:14 AM Changeset in webkit [102795] by
-
- 2 edits in trunk/Tools
[Qt] Unreviewed speculative MIPS and SH4 buildfix after r102776.
- qmake/mkspecs/features/features.prf:
- 10:03 AM Changeset in webkit [102794] by
-
- 4 edits in trunk/Source/WebCore
Unreviewed, rolling out r102688.
http://trac.webkit.org/changeset/102688
https://bugs.webkit.org/show_bug.cgi?id=74220
Under the hypothesis that it might be the cause of
browser_tests and ui_tests crashes on Chromium canaries --
will reland if not.
- bindings/v8/V8Proxy.cpp:
(WebCore::addMessageToConsole):
(WebCore::logInfo):
(WebCore::V8Proxy::reportUnsafeAccessTo):
- bindings/v8/V8Proxy.h:
- bindings/v8/custom/V8CustomXPathNSResolver.cpp:
(WebCore::V8CustomXPathNSResolver::lookupNamespaceURI):
- 9:48 AM Changeset in webkit [102793] by
-
- 3 edits2 adds in trunk
Web Inspector: DatabaseTableView should escape table name.
https://bugs.webkit.org/show_bug.cgi?id=74503
Reviewed by Pavel Feldman.
Source/WebCore:
Test: inspector/database-table-name-excaping.html
- inspector/front-end/DatabaseTableView.js:
(WebInspector.DatabaseTableView.prototype._escapeTableName):
(WebInspector.DatabaseTableView.prototype.update):
LayoutTests:
- inspector/database-table-name-excaping-expected.txt: Added.
- inspector/database-table-name-excaping.html: Added.
- 9:41 AM Changeset in webkit [102792] by
-
- 3 edits in trunk/LayoutTests
[Qt] Test fonts are not used with Qt5
https://bugs.webkit.org/show_bug.cgi?id=72513
- platform/qt-5.0/Skipped: Unskip a bunch of now passing tests - part 4. : svg
- platform/qt-wk2/Skipped: Skip 2 flakey tests.
- 9:26 AM Changeset in webkit [102791] by
-
- 4 edits in trunk/Source/WebCore
[GStreamer] padTemplate leak in webkitwebaudiosrc
https://bugs.webkit.org/show_bug.cgi?id=74495
Reviewed by Martin Robinson.
Use a GstPadTemplate smart pointer in webkit_web_audio_src_init to
avoid a memory leak after the ghost pad creation.
- platform/audio/gstreamer/WebKitWebAudioSourceGStreamer.cpp:
(webkit_web_audio_src_init):
- platform/graphics/gstreamer/GRefPtrGStreamer.cpp:
(WTF::adoptGRef):
(WTF::GstPadTemplate):
- platform/graphics/gstreamer/GRefPtrGStreamer.h:
- 9:20 AM Changeset in webkit [102790] by
-
- 2 edits in trunk/Tools
Make my e-mail address a little more awesome.
- Scripts/webkitpy/common/config/committers.py:
- 9:17 AM Changeset in webkit [102789] by
-
- 3 edits in trunk/LayoutTests
[Qt] [Gardening] editing/pasteboard/4242293-1.html now passes.
https://bugs.webkit.org/show_bug.cgi?id=73417
Patch by João Paulo Rechi Vita <jprvita@openbossa.org> on 2011-12-14
Reviewed by Csaba Osztrogonác.
Remove this test from the skip list since it is passing now.
- platform/qt-5.0/Skipped:
- platform/qt-wk2/Skipped:
- 9:15 AM Changeset in webkit [102788] by
-
- 2 edits in trunk/LayoutTests
[Qt] Test fonts are not used with Qt5
https://bugs.webkit.org/show_bug.cgi?id=72513
- platform/qt-5.0/Skipped: Unskip a bunch of now passing tests - part 3. : editing
- 9:13 AM Changeset in webkit [102787] by
-
- 9 edits2 adds in trunk
Crash in RenderBox::paintBoxDecorations when documentElement has no renderer
https://bugs.webkit.org/show_bug.cgi?id=64284
Reviewed by Ryosuke Niwa.
Source/WebCore:
Test: fast/dynamic/crash-paint-no-documentElement-renderer.html
- rendering/RenderBox.cpp:
(WebCore::RenderBox::paintBackground): Check the documentElement's
renderer before using it which matches what RenderView does.
LayoutTests:
- fast/dynamic/crash-paint-no-documentElement-renderer-expected.png: Added.
- fast/dynamic/crash-paint-no-documentElement-renderer-expected.txt: Added.
- fast/dynamic/crash-paint-no-documentElement-renderer.html: Added.
- platform/chromium/test_expectations.txt:
- platform/efl/Skipped:
- platform/gtk/test_expectations.txt:
- platform/mac/test_expectations.txt:
- platform/qt/test_expectations.txt:
- platform/win/test_expectations.txt:
The test hits the ASSERT from bug 68859 in Debug. However it works well in Release.
- 9:03 AM Changeset in webkit [102786] by
-
- 6 edits3 copies2 adds in trunk
DocumentLoader should ref its mainResourceLoader.
https://bugs.webkit.org/show_bug.cgi?id=74424
Reviewed by Adam Barth.
Source/WebCore:
Tests: platform/chromium/http/tests/security/mixedContent/insecure-iframe-in-main-frame-allowed.html
platform/chromium/http/tests/security/mixedContent/insecure-iframe-in-main-frame-blocked.html
- loader/DocumentLoader.cpp:
(WebCore::DocumentLoader::startLoadingMainResource):
- loader/MainResourceLoader.cpp:
(WebCore::MainResourceLoader::loadNow):
LayoutTests:
More tests for insecure iframes blocked inside of https frames.
- http/tests/security/mixedContent/resources/frame-with-insecure-iframe.html: Added.
- platform/chromium/http/tests/security/mixedContent/insecure-iframe-in-main-frame-allowed-expected.txt: Added.
- platform/chromium/http/tests/security/mixedContent/insecure-iframe-in-main-frame-allowed.html: Added.
- platform/chromium/http/tests/security/mixedContent/insecure-iframe-in-main-frame-blocked-expected.txt: Added.
- platform/chromium/http/tests/security/mixedContent/insecure-iframe-in-main-frame-blocked.html: Added.
- platform/chromium/http/tests/security/mixedContent/insecure-image-in-main-frame-allowed-expected.txt:
- platform/chromium/http/tests/security/mixedContent/insecure-image-in-main-frame-allowed.html:
- 8:59 AM Changeset in webkit [102785] by
-
- 2 edits in trunk/LayoutTests
[Qt] Test fonts are not used with Qt5
https://bugs.webkit.org/show_bug.cgi?id=72513
- platform/qt-5.0/Skipped: Unskip a bunch of now passing tests - part 2. : tables
- 8:47 AM Changeset in webkit [102784] by
-
- 2 edits in trunk/LayoutTests
[Qt] Test fonts are not used with Qt5
https://bugs.webkit.org/show_bug.cgi?id=72513
- platform/qt-5.0/Skipped: Unskip a bunch of now passing tests - part 1. : css2.1, css3
- 8:45 AM Changeset in webkit [102783] by
-
- 3 edits in trunk/Source/WebCore
CSS Filters should support GPU acceleration
https://bugs.webkit.org/show_bug.cgi?id=74441
Reviewed by Darin Adler.
Will be covered by existing CSS filters tests, when run in GPU mode.
- rendering/FilterEffectRenderer.cpp:
(WebCore::FilterEffectRenderer::prepare):
- rendering/RenderLayer.cpp:
(WebCore::RenderLayer::updateOrRemoveFilterEffect):
- 8:37 AM Changeset in webkit [102782] by
-
- 4 edits in trunk
Source/WebCore: [CHROMIUM/SKIA] Handle put[Un/Pre]multipliedImageData conversions in Skia rather than ImageBuffer
https://bugs.webkit.org/show_bug.cgi?id=73953
Patch by Brian Salomon <bsalomon@google.com> on 2011-12-14
Reviewed by Stephen White.
Tested by existing canvas2d layout tests.
- platform/graphics/skia/ImageBufferSkia.cpp:
(WebCore::putImageData):
(WebCore::ImageBuffer::putUnmultipliedImageData):
(WebCore::ImageBuffer::putPremultipliedImageData):
LayoutTests: [CHROMIUM] Make canvas/philip/tests/2d.imageData.put.unchanged.html be expected to fail
on the GPU due to slight difference in alpha-premul computation.
https://bugs.webkit.org/show_bug.cgi?id=73953
Patch by Brian Salomon <bsalomon@google.com> on 2011-12-14
Reviewed by Stephen White.
- platform/chromium/test_expectations.txt:
- 8:29 AM Changeset in webkit [102781] by
-
- 4 edits in trunk
[Qt] Rollout r102769, because it broke Qt-4.8 builds.
.:
- Source/api.pri:
Tools:
- qmake/mkspecs/features/webcore.prf:
- 8:20 AM Changeset in webkit [102780] by
-
- 1 edit1 delete in trunk/Source/WebCore
Remove SharedBufferBlackBerry.cpp from WebCore/platform/blackberry
https://bugs.webkit.org/show_bug.cgi?id=74488
Patch by Mary Wu <mary.wu@torchmobile.com.cn> on 2011-12-14
Reviewed by Rob Buis.
Remove dead code, no new tests.
- platform/blackberry/SharedBufferBlackBerry.cpp: Removed.
- 8:04 AM Changeset in webkit [102779] by
-
- 9 edits in trunk/Source/WebKit2
[Qt] [WK2] Move download handling out of QtWebPageProxy
https://bugs.webkit.org/show_bug.cgi?id=74506
Reviewed by Kenneth Rohde Christiansen.
Also moves the creation of QtWebContext out of QtWebPageProxy.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::initialize):
(QQuickWebViewPrivate::handleDownloadRequest):
(QQuickWebViewPrivate::_q_onReceivedResponseFromDownload):
- UIProcess/API/qt/qquickwebview_p.h:
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/API/qt/qwebdownloaditem_p.h:
- UIProcess/qt/QtPageClient.cpp:
(QtPageClient::handleDownloadRequest):
- UIProcess/qt/QtPageClient.h:
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::QtWebPageProxy):
- UIProcess/qt/QtWebPageProxy.h:
- 8:03 AM Changeset in webkit [102778] by
-
- 1 edit2 copies in branches/chromium/963
Merge 102699 - Web Inspector: Network item view does not correctly decode "+" in request parameters.
https://bugs.webkit.org/show_bug.cgi?id=74422
Reviewed by Pavel Feldman.
Source/WebCore:
Test: http/tests/inspector/network/request-parameters-decoding.html
- inspector/front-end/ResourceHeadersView.js:
(WebInspector.ResourceHeadersView.prototype._formatParameter):
(WebInspector.ResourceHeadersView.prototype._refreshParms):
LayoutTests:
- http/tests/inspector/network/request-parameters-decoding-expected.txt: Added.
- http/tests/inspector/network/request-parameters-decoding.html: Added.
TBR=vsevik@chromium.org
BUG=105690
Review URL: http://codereview.chromium.org/8907036
- 7:56 AM Changeset in webkit [102777] by
-
- 1 edit76 deletes in trunk/LayoutTests
[Qt] Test fonts are not used with Qt5
https://bugs.webkit.org/show_bug.cgi?id=72513
Unreviewed gardening, remove unnecessary Qt5 specific expected files.
- platform/qt-5.0/animations/cross-fade-background-image-expected.png: Removed.
- platform/qt-5.0/animations/cross-fade-background-image-expected.txt: Removed.
- platform/qt-5.0/animations/cross-fade-border-image-source-expected.png: Removed.
- platform/qt-5.0/animations/cross-fade-border-image-source-expected.txt: Removed.
- platform/qt-5.0/animations/cross-fade-list-style-image-expected.png: Removed.
- platform/qt-5.0/animations/cross-fade-list-style-image-expected.txt: Removed.
- platform/qt-5.0/animations/cross-fade-webkit-mask-box-image-expected.png: Removed.
- platform/qt-5.0/animations/cross-fade-webkit-mask-box-image-expected.txt: Removed.
- platform/qt-5.0/animations/cross-fade-webkit-mask-image-expected.png: Removed.
- platform/qt-5.0/animations/cross-fade-webkit-mask-image-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-001-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-001-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-002-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-002-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-003-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-003-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-004-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-004-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-005-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-005-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-006-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-006-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-007-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-007-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-008-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-008-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-009-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/background-intrinsic-009-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/border-spacing-applies-to-015-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/dynamic-top-change-001-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/dynamic-top-change-001-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/dynamic-top-change-002-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/dynamic-top-change-002-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/dynamic-top-change-003-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/dynamic-top-change-003-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/dynamic-top-change-004-expected.png: Removed.
- platform/qt-5.0/css2.1/20110323/dynamic-top-change-004-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/empty-inline-001-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/empty-inline-002-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/empty-inline-003-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/table-caption-001-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/table-caption-002-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/table-caption-horizontal-alignment-001-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/table-caption-margins-001-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/table-caption-optional-001-expected.txt: Removed.
- platform/qt-5.0/css2.1/20110323/table-caption-optional-002-expected.txt: Removed.
- platform/qt-5.0/editing/execCommand/indent-nested-lists-3-expected.txt: Removed.
- platform/qt-5.0/fast/css/child-style-can-override-visited-style-expected.txt: Removed.
- platform/qt-5.0/fast/css/empty-inline-003-quirksmode-expected.txt: Removed.
- platform/qt-5.0/fast/css/empty-inline-line-height-first-line-expected.txt: Removed.
- platform/qt-5.0/fast/css/empty-inline-line-height-first-line-quirksmode-expected.txt: Removed.
- platform/qt-5.0/fast/css/font-face-descending-unicode-range-expected.txt: Removed.
- platform/qt-5.0/fast/dom/rtl-scroll-to-leftmost-and-resize-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/block-axis-horizontal-bt-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/block-axis-horizontal-tb-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/block-axis-vertical-lr-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/block-axis-vertical-rl-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/pagination-h-horizontal-bt-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/pagination-h-horizontal-tb-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/pagination-h-vertical-rl-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/pagination-v-horizontal-bt-expected.txt: Removed.
- platform/qt-5.0/fast/multicol/pagination-v-vertical-lr-expected.txt: Removed.
- platform/qt-5.0/svg/as-background-image/background-image-preserveaspectRatio-support-expected.txt: Removed.
- platform/qt-5.0/svg/as-image/animated-svg-as-image-no-fixed-intrinsic-size-expected.txt: Removed.
- platform/qt-5.0/svg/as-image/animated-svg-as-image-same-image-expected.txt: Removed.
- platform/qt-5.0/svg/as-image/same-image-two-instances-expected.txt: Removed.
- platform/qt-5.0/svg/as-image/svg-image-change-content-size-expected.txt: Removed.
- platform/qt-5.0/svg/as-object/svg-embedded-in-html-in-iframe-expected.txt: Removed.
- platform/qt-5.0/svg/custom/pointer-events-image-css-transform-expected.txt: Removed.
- platform/qt-5.0/svg/custom/pointer-events-text-css-transform-expected.txt: Removed.
- platform/qt-5.0/svg/transforms/svg-css-transforms-clip-path-expected.txt: Removed.
- platform/qt-5.0/svg/transforms/svg-css-transforms-expected.txt: Removed.
- platform/qt-5.0/transitions/cross-fade-background-image-expected.png: Removed.
- platform/qt-5.0/transitions/cross-fade-background-image-expected.txt: Removed.
- platform/qt-5.0/transitions/cross-fade-border-image-expected.png: Removed.
- platform/qt-5.0/transitions/cross-fade-border-image-expected.txt: Removed.
- 7:55 AM Changeset in webkit [102776] by
-
- 10 edits4 adds in trunk/Tools
[Qt] Test fonts are not used with Qt5
https://bugs.webkit.org/show_bug.cgi?id=72513
Patch by Balazs Kelemen <kbalazs@webkit.org> on 2011-12-14
Reviewed by Simon Hausmann.
Don't depend on Q_WS_X11 anymore since it's not the Qt5
way to detect the platform. Make the guards depend
on our own configtest for fontconfig. For Qt4 we can still
use the preassumption that we have it on Linux.
- DumpRenderTree/qt/DumpRenderTree.pro:
- DumpRenderTree/qt/DumpRenderTreeQt.cpp:
(WebCore::DumpRenderTree::open):
(WebCore::DumpRenderTree::initializeFonts):
- DumpRenderTree/qt/DumpRenderTreeQt.h:
- DumpRenderTree/qt/main.cpp:
(main): Additionally remove a nonsense piece of code that was
trying to reset the font settings - which is not necessary -
after we have already returned from main.
- WebKitTestRunner/InjectedBundle/Target.pri:
- WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp:
(WTR::activateFonts):
- WebKitTestRunner/Target.pri: Remove unnecessary fontconfig linkage
from WTR. It is not needed. We set up the fonts via the injected bundle.
- qmake/config.tests/fontconfig/fontconfig.cpp: Added.
(main):
- qmake/config.tests/fontconfig/fontconfig.pro: Added.
- qmake/mkspecs/features/features.prf:
- qmake/sync.profile:
- 7:33 AM Changeset in webkit [102775] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Qt-WK2 gardening.
[Qt][WK2] fast/dom/rtl-scroll-to-leftmost-and-resize.html fails
https://bugs.webkit.org/show_bug.cgi?id=74504
[Qt][WK2] css3/unicode-bidi-isolate-aharon-failing.html fails
https://bugs.webkit.org/show_bug.cgi?id=74505
Skip failing tests.
- platform/qt-wk2/Skipped:
- 6:13 AM Changeset in webkit [102774] by
-
- 3 edits1 add in trunk/Source/WebCore
Use [Supplemental] IDL in WebSocket
https://bugs.webkit.org/show_bug.cgi?id=74160
Reviewed by Adam Barth.
By using the [Supplemental] IDL, this patch moves declarations of WebSocket
attributes from DOMWindow.idl to websocket/DOMWindowWebSocket.idl,
which helps make WebSocket a self-contained module.
No new tests, no change in behavior.
Confirm that http/tests/websocket/* pass.
- WebCore.gypi: Added DOMWindowWebSocket.idl.
- page/DOMWindow.idl: Added the [Supplemented] IDL to WebSocket-related attributes. This [Supplemented] IDL will be removed after all platforms support the [Supplemental] IDL (See bug 73394 for more details).
- websockets/DOMWindowWebSocket.idl: Added. Used the [Supplemental=DOMWindow] IDL. The attributes in this IDL file are treated as if they are described in DOMWindow.idl.
- 6:08 AM Changeset in webkit [102773] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed fix after mobile theme changes.
- 5:58 AM Changeset in webkit [102772] by
-
- 2 edits in trunk/Source/WebKit/chromium
[Chromium] Roll chromium DEPS (r113807 -> r114356)
https://bugs.webkit.org/show_bug.cgi?id=74496
Reviewed by Tony Gentilcore.
Roll deps to r114356 and update the location of sfntly to
pick up the change at Chromium.
- DEPS:
- 5:57 AM Changeset in webkit [102771] by
-
- 8 edits in trunk/Source/WebKit2
[Qt] [WK2] Move QWebNavigationHistory to QQuickWebView
https://bugs.webkit.org/show_bug.cgi?id=74442
Reviewed by Simon Hausmann.
QWebNavigationHistory used QtWebPageProxy to be QObject parent of the inner models,
this patch change that to use OwnPtr instead. When creating the history object we pass
only the WKPageRef and let it get the backForwardList.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::initialize):
(QQuickWebViewPrivate::didChangeBackForwardList):
(QQuickWebViewExperimental::navigationHistory):
(QQuickWebViewExperimental::goForwardTo):
(QQuickWebViewExperimental::goBackTo):
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/API/qt/qwebnavigationhistory.cpp:
(QWebNavigationListModelPrivate::createWebNavigationModel):
(QWebNavigationHistoryPrivate::QWebNavigationHistoryPrivate):
(QWebNavigationHistoryPrivate::createHistory):
(QWebNavigationHistoryPrivate::goBackTo):
(QWebNavigationHistoryPrivate::goForwardTo):
(QWebNavigationListModel::QWebNavigationListModel):
(QWebNavigationHistory::backItems):
(QWebNavigationHistory::forwardItems):
- UIProcess/API/qt/qwebnavigationhistory_p.h:
- UIProcess/API/qt/qwebnavigationhistory_p_p.h:
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::QtWebPageProxy):
- UIProcess/qt/QtWebPageProxy.h:
- 5:51 AM Changeset in webkit [102770] by
-
- 3 edits in trunk/Source/WebCore
Add different salt to different types of selectors. So the CSS fast
path can tell the different between tags and class attributes with
otherwise identical values.
https://bugs.webkit.org/show_bug.cgi?id=74284
Patch by Allan Sandfeld Jensen <allan.jensen@nokia.com> on 2011-12-14
Reviewed by Antti Koivisto.
- css/SelectorChecker.cpp:
(WebCore::collectElementIdentifierHashes):
(WebCore::collectDescendantSelectorIdentifierHashes):
- css/SelectorChecker.h:
- 5:48 AM Changeset in webkit [102769] by
-
- 4 edits in trunk
[Qt] Don't add WebCoreSupport and WebKit APIs to include WebCore's include path
Followup to r102679
https://bugs.webkit.org/show_bug.cgi?id=74413
Reviewed by Simon Hausmann.
- 5:20 AM Changeset in webkit [102768] by
-
- 8 edits1 add in trunk
[Qt] Mobile theme could use a little refresh
https://bugs.webkit.org/show_bug.cgi?id=74293
Source/WebCore:
The look and feel of the "mobile theme" we're
using in QtWebKit dates back to the maemo 5 days.
This is an attempt at making it look less out of
place, and also support progress and range.
Reviewed by Kenneth Rohde Christiansen.
No new tests, this is still not the default theme
for tests.
- DerivedSources.pri:
- css/mobileThemeQt.css: Added.
(input[type="submit"], select):
(input[type="submit"]:disabled, input[type="submit"]:disabled:active, select:disabled, input[type="text"]:disabled):
(input[type="submit"]:active):
- platform/qt/RenderThemeQt.cpp:
(WebCore::RenderThemeQt::extraDefaultStyleSheet):
(WebCore::StylePainter::StylePainter):
(WebCore::StylePainter::init):
(WebCore::StylePainter::~StylePainter):
- platform/qt/RenderThemeQt.h:
- platform/qt/RenderThemeQtMobile.cpp:
(WebCore::drawRectangularControlBackground):
(WebCore::shrinkRectToSquare):
(WebCore::StylePainterMobile::StylePainterMobile):
(WebCore::StylePainterMobile::~StylePainterMobile):
(WebCore::StylePainterMobile::drawCheckableBackground):
(WebCore::StylePainterMobile::sizeForPainterScale):
(WebCore::StylePainterMobile::drawChecker):
(WebCore::StylePainterMobile::findCheckBox):
(WebCore::StylePainterMobile::drawRadio):
(WebCore::StylePainterMobile::findRadio):
(WebCore::StylePainterMobile::drawMultipleComboButton):
(WebCore::StylePainterMobile::drawSimpleComboButton):
(WebCore::StylePainterMobile::getButtonImageSize):
(WebCore::StylePainterMobile::findComboButton):
(WebCore::StylePainterMobile::drawLineEdit):
(WebCore::StylePainterMobile::drawCheckBox):
(WebCore::StylePainterMobile::drawRadioButton):
(WebCore::StylePainterMobile::drawPushButton):
(WebCore::StylePainterMobile::drawComboBox):
(WebCore::StylePainterMobile::drawProgress):
(WebCore::StylePainterMobile::drawSliderThumb):
(WebCore::RenderThemeQtMobile::paintButton):
(WebCore::RenderThemeQtMobile::paintTextField):
(WebCore::RenderThemeQtMobile::setPopupPadding):
(WebCore::RenderThemeQtMobile::paintMenuList):
(WebCore::RenderThemeQtMobile::paintMenuListButton):
(WebCore::RenderThemeQtMobile::animationDurationForProgressBar):
(WebCore::RenderThemeQtMobile::paintProgressBar):
(WebCore::RenderThemeQtMobile::paintSliderTrack):
(WebCore::RenderThemeQtMobile::paintSliderThumb):
(WebCore::RenderThemeQtMobile::adjustSliderThumbSize):
- platform/qt/RenderThemeQtMobile.h:
Tools:
Have MiniBrowser use the mobile theme when not
passed --desktop.
Reviewed by Kenneth Rohde Christiansen.
- MiniBrowser/qt/MiniBrowserApplication.cpp:
(MiniBrowserApplication::handleUserOptions):
- 5:00 AM Changeset in webkit [102767] by
-
- 5 edits2 adds in trunk
[Non-Mac] Change event should be fired when changing option by using keyboard.
https://bugs.webkit.org/show_bug.cgi?id=74384
Patch by Rakesh KN <rakesh.kn@motorola.com> on 2011-12-14
Reviewed by Kent Tamura.
Source/WebCore:
Fire onchange event when option is changed using up/down/right/left/pageup/pagedown/home/end keys.
Test: fast/forms/select/menulist-onchange-fired-with-key-up-down.html
- html/HTMLSelectElement.cpp:
(WebCore::HTMLSelectElement::menuListDefaultEventHandler):
Setting the DispatchChangeEvent selection option flag when the option is selected using
up/down/right/left/pageup/pagedown/home/end keys.
LayoutTests:
Fire onchange event when option is changed using up/down/right/left/pageup/pagedown/home/end keys.
- fast/forms/select/menulist-onchange-fired-with-key-up-down-expected.txt: Added.
- fast/forms/select/menulist-onchange-fired-with-key-up-down.html: Added.
- platform/chromium/test_expectations.txt:
Skipped for Chromium MAC.
- platform/mac/Skipped:
Skipped for Apple MAC.
- 4:50 AM Changeset in webkit [102766] by
-
- 4 edits1 delete in trunk
[Qt] [Gardening] Remove qt-4.7 layout tests dir
https://bugs.webkit.org/show_bug.cgi?id=74426
Building trunk now depends on Qt >= 4.8, so no need to keep this directory
on the tree.
Patch by João Paulo Rechi Vita <jprvita@openbossa.org> on 2011-12-14
Reviewed by Csaba Osztrogonác.
Tools:
- Scripts/webkitpy/layout_tests/port/qt.py:
(QtPort.qt_version):
(QtPort.baseline_search_path):
(QtPort._skipped_file_search_paths):
- Scripts/webkitpy/layout_tests/port/qt_unittest.py:
(QtPortTest._assert_search_path):
LayoutTests:
- platform/qt-4.7/Skipped: Removed.
- 4:50 AM Changeset in webkit [102765] by
-
- 13 edits in trunk/Source/WebKit2
[Qt][WK2] Remove DrawingArea and QtWebPageEventHandler code from QtWebPageProxy
https://bugs.webkit.org/show_bug.cgi?id=74414
Reviewed by Simon Hausmann.
This also moves QtWebPageEventHandler to inside QQuickWebPagePrivate, to avoid
the WebPage having a backpointer to the QQuickWebView.
- Target.pri:
- UIProcess/API/qt/qquickwebpage.cpp:
(QQuickWebPage::geometryChanged):
(QQuickWebPage::event):
(QQuickWebPagePrivate::QQuickWebPagePrivate):
(QQuickWebPagePrivate::initialize):
(QQuickWebPagePrivate::setDrawingAreaSize):
(QQuickWebPagePrivate::paintToCurrentGLContext):
(QQuickWebPagePrivate::resetPaintNode):
- UIProcess/API/qt/qquickwebpage_p.h:
- UIProcess/API/qt/qquickwebpage_p_p.h:
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::initialize):
(QQuickWebViewPrivate::initializeDesktop):
(QQuickWebViewPrivate::initializeTouch):
(QQuickWebViewPrivate::_q_resume):
(QQuickWebViewPrivate::processDidCrash):
(QQuickWebViewPrivate::didRelaunchProcess):
(QQuickWebViewPrivate::createDrawingAreaProxy):
(QQuickWebViewPrivate::updateVisibleContentRectAndScale):
(QQuickWebViewPrivate::_q_viewportTrajectoryVectorChanged):
(QQuickWebViewPrivate::updateViewportSize):
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/qt/QtPageClient.cpp:
(QtPageClient::createDrawingAreaProxy):
- UIProcess/qt/QtPageClient.h:
(QtPageClient::findStringInCustomRepresentation):
(QtPageClient::countStringMatchesInCustomRepresentation):
- UIProcess/qt/QtWebPageEventHandler.cpp:
(QtWebPageEventHandler::QtWebPageEventHandler):
(QtWebPageEventHandler::startDrag):
- UIProcess/qt/QtWebPageEventHandler.h:
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::init):
- UIProcess/qt/QtWebPageProxy.h:
- 3:42 AM Changeset in webkit [102764] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, skip 2 tests failing on 32-bit GTK bot.
- platform/gtk/Skipped:
- 3:27 AM Changeset in webkit [102763] by
-
- 9 edits in trunk
[Qt] Fix compilation of QtWebKit with --orientation-events without ENABLE_DEVICE_ORIENTATION
https://bugs.webkit.org/show_bug.cgi?id=74492
Patch by Alexander Færøy <alexander.faeroy@nokia.com> on 2011-12-14
Reviewed by Simon Hausmann.
.:
- Source/api.pri:
Source/WebKit/qt:
- Api/qwebframe.cpp:
(QWebFramePrivate::_q_orientationChanged):
- Api/qwebframe_p.h:
- WebCoreSupport/DeviceMotionProviderQt.cpp:
- WebCoreSupport/DeviceMotionProviderQt.h:
- WebCoreSupport/DeviceOrientationProviderQt.cpp:
- WebCoreSupport/DeviceOrientationProviderQt.h:
- 3:10 AM Changeset in webkit [102762] by
-
- 4 edits in trunk/LayoutTests
[Gtk] rebaseline test results for editing/selection/transformed-selection-rects.html
https://bugs.webkit.org/show_bug.cgi?id=74307
Patch by Zan Dobersek <zandobersek@gmail.com> on 2011-12-14
Reviewed by Philippe Normand.
Update test results for editing/selection/transformed-selection-rects.html
and unskip the test.
- platform/gtk/Skipped:
- platform/gtk/editing/selection/transformed-selection-rects-expected.png:
- platform/gtk/editing/selection/transformed-selection-rects-expected.txt:
- 2:31 AM Changeset in webkit [102761] by
-
- 2 edits in trunk/Tools
[Refactoring] In prepare-ChangeLog, make $isGit and $isSVN be used only
through parameter passing
https://bugs.webkit.org/show_bug.cgi?id=74485
Reviewed by Ryosuke Niwa.
We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
manner. This bug is one of the incremental refactorings to remove all top-level
code and global variables from prepare-ChangeLog. In this patch,
we make the following global variables be used only through parameter passing.
- $isGit
- $isSVN
- Scripts/prepare-ChangeLog:
(generateFunctionLists):
(printDiff):
(diffFromToString):
(diffCommand):
(statusCommand):
(createPatchCommand):
(diffHeaderFormat):
(generateFileList):
(isAddedStatus):
(isConflictStatus):
(statusDescription):
(extractLineRange):
- 2:23 AM Changeset in webkit [102760] by
-
- 2 edits in trunk
[Qt] [WK2] Linking fails if GStreamer not installed after r102493
https://bugs.webkit.org/show_bug.cgi?id=74412
Patch by Viatcheslav Ostapenko <ostapenko.viatcheslav@nokia.com> on 2011-12-14
Reviewed by Simon Hausmann.
Add -lrt to fix WK2 linking when gstreamer is not used.
- Source/api.pri:
- 2:16 AM Changeset in webkit [102759] by
-
- 2 edits in trunk/Source/WebKit/qt
Fix compilation for Qt with --minimal option after r102755.
Patch by Alexander Færøy <alexander.faeroy@nokia.com> on 2011-12-14
Reviewed by Csaba Osztrogonác.
- Api/qwebpage.cpp:
(QWebPagePrivate::QWebPagePrivate):
- 2:09 AM Changeset in webkit [102758] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, mark a GTK accessibility test flaky and fix
expectation of http/tests/security/cross-origin-xsl-redirect-BLOCKED.html.
- platform/gtk/test_expectations.txt:
platform/gtk/accessibility/unknown-roles-not-exposed.html is flaky.
- 2:06 AM Changeset in webkit [102757] by
-
- 2 edits in trunk/Source/WebCore
Web Inspector: TreeOutline's is broken when li elements have padding-left different from 14px.
https://bugs.webkit.org/show_bug.cgi?id=74445
Reviewed by Pavel Feldman.
- inspector/front-end/treeoutline.js:
(TreeElement.prototype.isEventWithinDisclosureTriangle):
- 2:04 AM Changeset in webkit [102756] by
-
- 3 edits in trunk/Source/WebCore
Web Inspector: [Regression] Scripts panel debug sidebar toolbar should not be scrolled out of the screen.
https://bugs.webkit.org/show_bug.cgi?id=74447
Reviewed by Pavel Feldman.
- inspector/front-end/ScriptsPanel.js:
(WebInspector.ScriptsPanel.prototype.wasShown):
- inspector/front-end/scriptsPanel.css:
(#scripts-debug-toolbar):
(#scripts-debug-sidebar-contents):
- 1:57 AM Changeset in webkit [102755] by
-
- 17 edits2 deletes in trunk
[Qt] DeviceOrientationClientMockQt should be removed in favor of DeviceOrientationClientMock
https://bugs.webkit.org/show_bug.cgi?id=74417
Patch by Alexander Færøy <alexander.faeroy@nokia.com> on 2011-12-14
Reviewed by Simon Hausmann.
Based on original patch by Kenneth Christiansen.
.:
- Source/api.pri:
Source/WebCore:
Already covered by current tests.
- dom/DeviceOrientationController.h:
(WebCore::DeviceOrientationController::client):
Source/WebKit/qt:
Already covered by current tests.
- Api/qwebpage.cpp:
(QWebPagePrivate::QWebPagePrivate):
- WebCoreSupport/DeviceMotionProviderQt.cpp:
(WebCore::DeviceMotionProviderQt::DeviceMotionProviderQt):
(WebCore::DeviceMotionProviderQt::filter):
- WebCoreSupport/DeviceMotionProviderQt.h:
- WebCoreSupport/DeviceOrientationClientMockQt.cpp: Removed.
- WebCoreSupport/DeviceOrientationClientMockQt.h: Removed.
- WebCoreSupport/DeviceOrientationClientQt.cpp:
(WebCore::DeviceOrientationClientQt::DeviceOrientationClientQt):
(WebCore::DeviceOrientationClientQt::~DeviceOrientationClientQt):
(WebCore::DeviceOrientationClientQt::lastOrientation):
- WebCoreSupport/DeviceOrientationClientQt.h:
- WebCoreSupport/DeviceOrientationProviderQt.cpp:
(WebCore::DeviceOrientationProviderQt::DeviceOrientationProviderQt):
(WebCore::DeviceOrientationProviderQt::setController):
(WebCore::DeviceOrientationProviderQt::start):
(WebCore::DeviceOrientationProviderQt::stop):
(WebCore::DeviceOrientationProviderQt::filter):
- WebCoreSupport/DeviceOrientationProviderQt.h:
(WebCore::DeviceOrientationProviderQt::isActive):
(WebCore::DeviceOrientationProviderQt::lastOrientation):
(WebCore::DeviceOrientationProviderQt::hasAlpha):
- WebCoreSupport/DumpRenderTreeSupportQt.cpp:
(toDeviceOrientationClientMock):
(DumpRenderTreeSupportQt::setMockDeviceOrientation):
- WebCoreSupport/DumpRenderTreeSupportQt.h:
Tools:
Already covered by current tests.
- DumpRenderTree/qt/DumpRenderTreeQt.cpp:
(WebCore::DumpRenderTree::DumpRenderTree):
(WebCore::DumpRenderTree::~DumpRenderTree):
- DumpRenderTree/qt/LayoutTestControllerQt.cpp:
(LayoutTestController::setMockDeviceOrientation):
- 1:51 AM Changeset in webkit [102754] by
-
- 1 edit2 adds in trunk/Source/WebKit
[BlackBerry] Add notification support for the BlackBerry port
https://bugs.webkit.org/show_bug.cgi?id=73194
Patch by Robin Qiu <robin.qiu@torchmobile.com.cn> on 2011-12-14
Reviewed by Nikolas Zimmermann.
Contributed by Torch team, the main contributor is Robin Qiu
<robin.qiu@torchmobile.com.cn>.
Initial upstream, no new tests.
- blackberry/WebCoreSupport/NotificationPresenterImpl.cpp: Added.
(WebKit::NotificationPresenterImpl::instance):
(WebKit::NotificationPresenterImpl::NotificationPresenterImpl):
(WebKit::NotificationPresenterImpl::~NotificationPresenterImpl):
(WebKit::NotificationPresenterImpl::show):
(WebKit::NotificationPresenterImpl::cancel):
(WebKit::NotificationPresenterImpl::notificationObjectDestroyed):
(WebKit::NotificationPresenterImpl::requestPermission):
(WebKit::NotificationPresenterImpl::onPermission):
(WebKit::NotificationPresenterImpl::cancelRequestsForPermission):
(WebKit::NotificationPresenterImpl::checkPermission):
(WebKit::NotificationPresenterImpl::notificationClicked):
- blackberry/WebCoreSupport/NotificationPresenterImpl.h: Added.
There is already a header file: Source/WebCore/notifications/NotificationPresenter.h.
To avoid conflicting with the it, I name my header file to NotificationPresenterImpl.
- 1:50 AM Changeset in webkit [102753] by
-
- 1 edit20 adds in trunk/LayoutTests
Unreviewed, GTK baselines for new tests.
- platform/gtk/accessibility/img-alt-tag-only-whitespace-expected.txt: Added.
- platform/gtk/css1/box_properties/acid_test-expected.txt: Added.
- platform/gtk/svg/clip-path/clip-path-css-transform-1-expected.txt: Added.
- platform/gtk/svg/clip-path/clip-path-css-transform-2-expected.txt: Added.
- platform/gtk/svg/custom/clip-path-with-css-transform-1-expected.txt: Added.
- platform/gtk/svg/custom/clip-path-with-css-transform-2-expected.txt: Added.
- platform/gtk/svg/custom/no-inherited-dashed-stroke-expected.txt: Added.
- platform/gtk/svg/custom/path-moveto-only-rendering-expected.txt: Added.
- platform/gtk/svg/custom/pointer-events-image-css-transform-expected.txt: Added.
- platform/gtk/svg/custom/pointer-events-text-css-transform-expected.txt: Added.
- platform/gtk/svg/custom/recursive-filter-expected.txt: Added.
- platform/gtk/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.txt: Added.
- platform/gtk/svg/custom/relative-sized-use-on-symbol-expected.txt: Added.
- platform/gtk/svg/custom/subpaths-moveto-only-rendering-expected.txt: Added.
- platform/gtk/svg/custom/use-on-symbol-inside-pattern-expected.txt: Added.
- platform/gtk/svg/stroke/zero-length-arc-linecaps-rendering-expected.txt: Added.
- platform/gtk/svg/text/non-bmp-positioning-lists-expected.txt: Added.
- platform/gtk/svg/transforms/svg-css-transforms-clip-path-expected.txt: Added.
- platform/gtk/svg/transforms/svg-css-transforms-expected.txt: Added.
- 1:41 AM Changeset in webkit [102752] by
-
- 3 edits in trunk/LayoutTests
Unreviewed expectation update.
- platform/chromium-win/fast/gradients/css3-radial-gradients-expected.png:
- platform/chromium-win/fast/gradients/css3-repeating-radial-gradients-expected.png:
- 1:29 AM Changeset in webkit [102751] by
-
- 35 edits1 add in trunk/LayoutTests
Unreviewed, GTK rebaseline after r102748.
- platform/gtk/css1/font_properties/font-expected.txt:
- platform/gtk/css1/font_properties/font_variant-expected.txt:
- platform/gtk/css1/pseudo/firstline-expected.txt:
- platform/gtk/css1/pseudo/multiple_pseudo_elements-expected.txt:
- platform/gtk/css2.1/t051201-c23-first-line-00-b-expected.txt:
- platform/gtk/css2.1/t051202-c26-psudo-nest-00-c-expected.txt:
- platform/gtk/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt:
- platform/gtk/css2.1/t1505-c524-font-var-00-b-expected.txt:
- platform/gtk/css2.1/t1508-c527-font-00-b-expected.txt:
- platform/gtk/css2.1/t1508-c527-font-04-b-expected.txt:
- platform/gtk/css2.1/t1508-c527-font-05-b-expected.txt:
- platform/gtk/css2.1/t1508-c527-font-06-b-expected.txt:
- platform/gtk/css2.1/t1508-c527-font-07-b-expected.txt:
- platform/gtk/css2.1/t1508-c527-font-10-c-expected.txt:
- platform/gtk/fast/css/font-face-cache-bug-expected.txt: Added.
- platform/gtk/fast/css/font-face-multiple-faces-expected.txt:
- platform/gtk/fast/css/font-face-opentype-expected.txt:
- platform/gtk/fast/css/font-face-remote-expected.txt:
- platform/gtk/fast/css/font-face-woff-expected.txt:
- platform/gtk/fast/inline/absolute-positioned-inline-in-centred-block-expected.txt:
- platform/gtk/fast/inline/left-right-center-inline-alignment-in-ltr-and-rtl-blocks-expected.txt:
- platform/gtk/fast/repaint/text-emphasis-h-expected.txt:
- platform/gtk/fast/repaint/text-emphasis-v-expected.txt:
- platform/gtk/fast/text/emphasis-avoid-ruby-expected.txt:
- platform/gtk/fast/text/emphasis-combined-text-expected.txt:
- platform/gtk/fast/text/emphasis-expected.txt:
- platform/gtk/fast/text/emphasis-overlap-expected.txt:
- platform/gtk/fast/text/emphasis-vertical-expected.txt:
- platform/gtk/fast/writing-mode/broken-ideograph-small-caps-expected.txt:
- platform/gtk/fast/writing-mode/broken-ideographic-font-expected.txt:
- platform/gtk/fast/writing-mode/japanese-rl-text-with-broken-font-expected.txt:
- platform/gtk/fonts/custom-font-missing-glyphs-expected.txt:
- platform/gtk/fonts/font-face-with-complex-text-expected.txt:
- platform/gtk/fonts/synthetic-oblique-positioning-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt:
- 1:12 AM Changeset in webkit [102750] by
-
- 6 edits in trunk
[BlackBerry] Switch to libjpeg for decoding
https://bugs.webkit.org/show_bug.cgi?id=74475
Patch by Jacky Jiang <zhajiang@rim.com> on 2011-12-14
Reviewed by Daniel Bates.
.:
Find libjpeg instead of libimg.
- Source/cmake/OptionsBlackBerry.cmake:
Source/WebCore:
Switch to cross platform JPEG image decoder for decoding as this keeps
us inline with other ports and less to maintain.
- PlatformBlackBerry.cmake:
Source/WebKit:
Append libjpeg instead of libimg.
- blackberry/CMakeListsBlackBerry.txt:
- 1:10 AM Changeset in webkit [102749] by
-
- 2 edits in branches/safari-534.53-branch/Source/WebKit2
Fix <rdar://problem/10565568>.
Reviewed by Anders Carlsson.
- WebProcess/Plugins/Netscape/NetscapePlugin.cpp:
(WebKit::NetscapePlugin::snapshot): Base the backing store size on the correct member variable.
- 12:35 AM Changeset in webkit [102748] by
-
- 5 edits in trunk
[GTK] Bad text rendering since r101343
https://bugs.webkit.org/show_bug.cgi?id=73744
Reviewed by Martin Robinson.
Source/WebCore:
- platform/graphics/freetype/FontPlatformDataFreeType.cpp:
(WebCore::setCairoFontOptionsFromFontConfigPattern): Keep Cairo
hint metrics unchanged for better visual font rendering results.
Tools:
Turn cairo hint metrics off for better font metrics reporting in
the tests. This is especially important for SVG.
- DumpRenderTree/gtk/DumpRenderTree.cpp:
(initializeGtkFontSettings):
- WebKitTestRunner/InjectedBundle/gtk/ActivateFontsGtk.cpp:
(WTR::initializeGtkSettings):
- 12:25 AM Changeset in webkit [102747] by
-
- 1 edit4 adds in trunk/Source/WebKit
Upstream text codec and web string files of BlackBerry API
https://bugs.webkit.org/show_bug.cgi?id=73586
Patch by Jacky Jiang <zhajiang@rim.com> on 2011-12-14
Reviewed by Daniel Bates.
Initial upstream, no new tests.
- blackberry/Api/WebKitTextCodec.cpp: Added.
(BlackBerry::WebKit::isSameEncoding):
(BlackBerry::WebKit::isASCIICompatibleEncoding):
(BlackBerry::WebKit::transcode):
(BlackBerry::WebKit::base64DecodePolicyForWebCore):
(BlackBerry::WebKit::base64Decode):
(BlackBerry::WebKit::base64Encode):
(BlackBerry::WebKit::unescapeURL):
(BlackBerry::WebKit::escapeURL):
(BlackBerry::WebKit::getExtensionForMimeType):
- blackberry/Api/WebKitTextCodec.h: Added.
- blackberry/Api/WebString.cpp: Added.
(BlackBerry::WebKit::WebString::WebString):
(BlackBerry::WebKit::WebString::~WebString):
(BlackBerry::WebKit::WebString::fromUtf8):
(BlackBerry::WebKit::WebString::operator=):
(BlackBerry::WebKit::WebString::utf8):
(BlackBerry::WebKit::WebString::characters):
(BlackBerry::WebKit::WebString::length):
(BlackBerry::WebKit::WebString::isEmpty):
(BlackBerry::WebKit::WebString::equal):
(BlackBerry::WebKit::WebString::equalIgnoringCase):
- blackberry/Api/WebString.h: Added.
- 12:24 AM Changeset in webkit [102746] by
-
- 3 edits in trunk/LayoutTests
Unreviewed expectation update.
- platform/chromium-linux/fast/gradients/css3-radial-gradients-expected.png:
- platform/chromium-linux/fast/gradients/css3-repeating-radial-gradients-expected.png:
- 12:01 AM Changeset in webkit [102745] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed attempt for fixing windows build.
- Included <wtf/MathExtras.h> which defined portable version of lround().
- Add some static_cast<> to suppress warnings.
- platform/animation/AnimationUtilities.h:
(WebCore::blend):
Dec 13, 2011:
- 11:34 PM Changeset in webkit [102744] by
-
- 2 edits in trunk/Source/WebCore
[BlackBerry] Add the new plugin files into the build system.
https://bugs.webkit.org/show_bug.cgi?id=74483
Patch by Wei Charles <charles.wei@torchmobile.com.cn> on 2011-12-13
Reviewed by Daniel Bates.
No new tests, just add new files to the build system.
- PlatformBlackBerry.cmake:
- 11:16 PM Changeset in webkit [102743] by
-
- 18 edits in trunk/Source/JavaScriptCore
DFG should infer when local variables are doubles
https://bugs.webkit.org/show_bug.cgi?id=74480
Reviewed by Oliver Hunt.
Introduced the notion that a local variable (though not an argument, yet!) can
be stored as a double, and will be guaranteed to always contain a double. This
requires more magic in the OSR (conversion in both entry and exit). The inference
is quite unorthodox: all uses of a variable vote on whether they think it should
be a double or a JSValue, based on how they use it. If they use it in an integer
or boxed value context, they vote JSValue. If they use it in a double context,
they vote double. This voting is interleaved in the propagator's fixpoint, so
that variables voted double then have a double prediction propagated from them.
This interleaving is needed because a variable that actually always contains an
integer that always gets used in arithmetic that involves doubles may end up
being voted double, which then means that all uses of the variable will see a
double rather than an integer.
This is worth 18% to SunSpider/3d-cube, 7% to Kraken/audio-beat-detection, 7%
to Kraken/audio-fft, 6% to Kraken/imaging-darkroom, 20% to
Kraken/imaging-gaussian-blur, and just over 1% to Kraken/json-parse-financial.
It results in a 1% speed-up on SunSpider and a 4% speed-up in Kraken. Similar
results on JSVALUE32_64, though with a bigger win on Kraken (5%) and no overall
win on SunSpider.
- bytecode/ValueRecovery.h:
(JSC::ValueRecovery::alreadyInRegisterFileAsUnboxedDouble):
(JSC::ValueRecovery::dump):
- dfg/DFGAbstractState.cpp:
(JSC::DFG::AbstractState::execute):
- dfg/DFGAssemblyHelpers.h:
(JSC::DFG::AssemblyHelpers::boxDouble):
- dfg/DFGGraph.cpp:
(JSC::DFG::Graph::dump):
- dfg/DFGJITCompiler.h:
(JSC::DFG::JITCompiler::noticeOSREntry):
- dfg/DFGOSREntry.cpp:
(JSC::DFG::prepareOSREntry):
- dfg/DFGOSREntry.h:
- dfg/DFGOSRExitCompiler64.cpp:
(JSC::DFG::OSRExitCompiler::compileExit):
- dfg/DFGPropagator.cpp:
(JSC::DFG::Propagator::vote):
(JSC::DFG::Propagator::doRoundOfDoubleVoting):
(JSC::DFG::Propagator::propagatePredictions):
(JSC::DFG::Propagator::fixupNode):
- dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::ValueSource::dump):
(JSC::DFG::SpeculativeJIT::compile):
(JSC::DFG::SpeculativeJIT::computeValueRecoveryFor):
- dfg/DFGSpeculativeJIT.h:
- dfg/DFGSpeculativeJIT32_64.cpp:
(JSC::DFG::SpeculativeJIT::compile):
- dfg/DFGSpeculativeJIT64.cpp:
(JSC::DFG::SpeculativeJIT::compile):
- dfg/DFGVariableAccessData.h:
(JSC::DFG::VariableAccessData::VariableAccessData):
(JSC::DFG::VariableAccessData::clearVotes):
(JSC::DFG::VariableAccessData::vote):
(JSC::DFG::VariableAccessData::doubleVoteRatio):
(JSC::DFG::VariableAccessData::shouldUseDoubleFormatAccordingToVote):
(JSC::DFG::VariableAccessData::shouldUseDoubleFormat):
(JSC::DFG::VariableAccessData::tallyVotesForShouldUseDoubleFormat):
- runtime/Arguments.cpp:
(JSC::Arguments::tearOff):
- runtime/Heuristics.cpp:
(JSC::Heuristics::initializeHeuristics):
- runtime/Heuristics.h:
- 10:49 PM Changeset in webkit [102742] by
-
- 2 edits in trunk/LayoutTests
[Qt] Unreviewed morning gardening.
- platform/qt/Skipped: Skip new failing tests.
- 10:14 PM Changeset in webkit [102741] by
-
- 8 edits2 adds in trunk
[Forms] Default selection of select(menulist) should not be disabled
https://bugs.webkit.org/show_bug.cgi?id=74270
Patch by Yosifumi Inoue <yosin@chromium.org> on 2011-12-13
Reviewed by Kent Tamura.
Source/WebCore:
This patch changes default selection of select(menulist) element to
- Selected option element. If there are multiple options which have selected state, we pick the largest index option up. (same as current)
- Non-disabled option element (new behavior)
- The first option if all options are disabled. (new behavior)
Tests: fast/forms/select/menulist-disabled-option-expected.html
fast/forms/select/menulist-disabled-option.html
- html/HTMLSelectElement.cpp:
(WebCore::HTMLSelectElement::recalcListItems): Implement new logic for selection.
LayoutTests:
basic-selects.html will fail because select element displays disabled
option element "foo" at index 0 as default selection. This should be
non-disabled option "bar" at index 1.
menulist-disabled-option-expected.html checks default selection of
select(menulist) with disabled option element.
- fast/forms/select/menulist-disabled-option-expected.html: Added.
- fast/forms/select/menulist-disabled-option.html: Added.
- platform/chromium/test_expectations.txt: Add fast/forms/basic-selects.html
- platform/gtk/test_expectations.txt: Add fast/forms/basic-selects.html
- platform/mac/test_expectations.txt: Add fast/forms/basic-selects.html
- platform/qt/test_expectations.txt: Add fast/forms/basic-selects.html
- platform/win/test_expectations.txt: Add fast/forms/basic-selects.html
- 9:52 PM Changeset in webkit [102740] by
-
- 18 edits1 add in trunk
Share blend progress code
https://bugs.webkit.org/show_bug.cgi?id=74464
Reviewed by Dean Jackson.
Lots of places in the code had copies of the animation interpolation
logic "from + (to - from) * progress", in various forms.
Coalesce all these into calls to a few new inline functions in a new
AnimationUtilities.h header. Color and Length get their own blend fuctions
in their respective headers.
Covered by existing tests.
- GNUmakefile.list.am:
- Target.pri:
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- css/CSSGradientValue.cpp:
- page/animation/AnimationBase.cpp:
(WebCore::blendFunc):
- platform/Length.h:
(WebCore::Length::blend):
- platform/animation/AnimationUtilities.h: Added.
(WebCore::blend):
- platform/graphics/Color.h:
(WebCore::blend):
- platform/graphics/transforms/PerspectiveTransformOperation.cpp:
(WebCore::PerspectiveTransformOperation::blend):
- platform/graphics/transforms/RotateTransformOperation.cpp:
(WebCore::RotateTransformOperation::blend):
- platform/graphics/transforms/ScaleTransformOperation.cpp:
(WebCore::ScaleTransformOperation::blend):
- platform/graphics/transforms/SkewTransformOperation.cpp:
(WebCore::SkewTransformOperation::blend):
- platform/graphics/transforms/TranslateTransformOperation.cpp:
(WebCore::TranslateTransformOperation::blend):
- svg/SVGLength.h:
(WebCore::SVGLength::blend):
- svg/SVGPathBlender.cpp:
(WebCore::blendFloatPoint):
(WebCore::SVGPathBlender::blendAnimatedDimensonalFloat):
(WebCore::SVGPathBlender::blendArcToSegment):
- 9:22 PM Changeset in webkit [102739] by
-
- 1 edit3 adds in trunk/Source/WebCore
Upstream 3 files into WebCore/platform/blackberry
ClipboardBlackBerry.cpp/h, PasteboardBlackBerry.cpp
https://bugs.webkit.org/show_bug.cgi?id=74381
Patch by Mary Wu <mary.wu@torchmobile.com.cn> on 2011-12-13
Reviewed by Rob Buis.
Main contributor:
Mike Fenton <mifenton@rim.com>
Initial upstream, no new tests.
- platform/blackberry/ClipboardBlackBerry.cpp: Added.
- platform/blackberry/ClipboardBlackBerry.h: Added.
- platform/blackberry/PasteboardBlackBerry.cpp: Added.
- 9:19 PM Changeset in webkit [102738] by
-
- 5 edits in trunk/Source/WebCore
Unreviewed, rolling out r102726.
http://trac.webkit.org/changeset/102726
https://bugs.webkit.org/show_bug.cgi?id=74154
Does not compile on clang
- platform/graphics/chromium/TiledLayerChromium.cpp:
(WebCore::UpdatableTile::UpdatableTile):
(WebCore::TiledLayerChromium::createTile):
- platform/graphics/chromium/cc/CCLayerTilingData.cpp:
(WebCore::CCLayerTilingData::addTile):
(WebCore::CCLayerTilingData::takeTile):
(WebCore::CCLayerTilingData::tileAt):
- platform/graphics/chromium/cc/CCLayerTilingData.h:
- platform/graphics/chromium/cc/CCTiledLayerImpl.cpp:
(WebCore::DrawableTile::DrawableTile):
(WebCore::CCTiledLayerImpl::createTile):
- 9:15 PM Changeset in webkit [102737] by
-
- 3 edits in trunk/Source/JavaScriptCore
Try to fix the Windows build.
Remove the callOnMainThread overload that takes a WTF::Function since it's not being used.
- wtf/MainThread.cpp:
- wtf/MainThread.h:
- 9:13 PM Changeset in webkit [102736] by
-
- 2 edits in trunk/Tools
[Refactoring] Remove several global variables from prepare-ChangeLog
https://bugs.webkit.org/show_bug.cgi?id=74389
Reviewed by David Kilzer.
We are planning to write unit-tests for prepare-ChangeLog in a run-leaks_unittest
manner. This bug is one of the incremental refactorings to remove all top-level
code and global variables from prepare-ChangeLog. In this patch,
we make the following global variables being used only through parameter passing.
- %paths
- $changedFiles
- $conflictFiles
- $functionLists
- $bugURL
- Scripts/prepare-ChangeLog:
(findChangeLogs):
(generateNewChangeLogs):
(processPaths):
(generateFileList):
(firstDirectoryOrCwd):
- 9:07 PM Changeset in webkit [102735] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed, rolling out r102732.
http://trac.webkit.org/changeset/102732
The last fix makes no sense...
- platform/graphics/chromium/cc/CCLayerTilingData.h:
- 8:59 PM Changeset in webkit [102734] by
-
- 3 edits2 adds in trunk
HTML details summary not working with form controls
https://bugs.webkit.org/show_bug.cgi?id=74398
Patch by Hajime Morrita <morrita@chromium.org> on 2011-12-13
Reviewed by Kent Tamura.
Source/WebCore:
Allowed HTMLSummaryElement to skip the toggle logic if the event
target is a form control.
Test: fast/html/details-click-controls.html
- html/HTMLSummaryElement.cpp:
(WebCore::isClickableControl):
(WebCore::HTMLSummaryElement::defaultEventHandler):
LayoutTests:
- fast/html/details-click-controls-expected.txt: Added.
- fast/html/details-click-controls.html: Added.
- 8:56 PM Changeset in webkit [102733] by
-
- 2 edits in trunk/Source/WebCore
Optimize to not use pow() in the inner loop in AudioParamTimeline
https://bugs.webkit.org/show_bug.cgi?id=73530
Patch by James Wei <james.wei@intel.com> on 2011-12-13
Reviewed by Kenneth Russell.
No new tests.
- webaudio/AudioParamTimeline.cpp:
(WebCore:AudioParamTimeline:valuesForTimeRangeImpl):
- 8:49 PM Changeset in webkit [102732] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed Chromium-Mac build fix trial.
- platform/graphics/chromium/cc/CCLayerTilingData.h:
- 8:11 PM Changeset in webkit [102731] by
-
- 2 edits in trunk/Source/WebCore
[Chromium] Initialize Settings::m_perTileDrawingEnabled properly.
https://bugs.webkit.org/show_bug.cgi?id=74476
Patch by David Reveman <reveman@chromium.org> on 2011-12-13
Reviewed by James Robinson.
Add m_perTileDrawingEnabled(false) to WebCore::Settings initialize list.
No new tests.
- page/Settings.cpp:
(WebCore::Settings::Settings):
- 7:12 PM Changeset in webkit [102730] by
-
- 13 edits3 adds in trunk
Add a very bare-bones implementation of bind and Function to WTF
https://bugs.webkit.org/show_bug.cgi?id=74462
Reviewed by Sam Weinig.
Source/JavaScriptCore:
In order to make it easier to package up function calls and send them across
threads, add a (currently very simple) implementation of WTF::bind and WTF::Function to a new
wtf/Functional.h header.
Currently, all bind can do is bind a nullary function and return a Function object that can be called and copied,
but I'll add more as the need arises.
- GNUmakefile.list.am:
- JavaScriptCore.gypi:
- JavaScriptCore.vcproj/WTF/WTF.vcproj:
- JavaScriptCore.xcodeproj/project.pbxproj:
- wtf/Functional.h: Added.
(WTF::R):
(WTF::FunctionImplBase::~FunctionImplBase):
(WTF::FunctionWrapper::ResultType):
(WTF::FunctionBase::isNull):
(WTF::FunctionBase::FunctionBase):
(WTF::FunctionBase::impl):
(WTF::bind):
- wtf/MainThread.cpp:
(WTF::callFunctionObject):
(WTF::callOnMainThread):
- wtf/MainThread.h:
- wtf/wtf.pro:
Source/WebCore:
Add a forwarding header for Functional.h.
- ForwardingHeaders/wtf/Functional.h: Added.
Tools:
Add basic tests for WTF::Function and WTF::bind.
- TestWebKitAPI/TestWebKitAPI.gypi:
- TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
- TestWebKitAPI/Tests/Functional.cpp: Added.
(TestWebKitAPI::returnFortyTwo):
(TestWebKitAPI::TEST):
- TestWebKitAPI/win/TestWebKitAPI.vcproj:
- 6:56 PM Changeset in webkit [102729] by
-
- 2 edits4 adds in trunk/LayoutTests
https://bugs.webkit.org/show_bug.cgi?id=74456
[V8][Chromium] Reenable dedicated worker layout tests.
Chromium-specific results are caused by exception message text differences between JSC and V8.
Reviewed by David Levin.
- platform/chromium/fast/workers/use-machine-stack-expected.txt: Added.
- platform/chromium/fast/workers/worker-constructor-expected.txt: Added.
- platform/chromium/fast/workers/worker-location-expected.txt: Added.
- platform/chromium/fast/workers/worker-script-error-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 6:55 PM Changeset in webkit [102728] by
-
- 3 edits in trunk/Source/JavaScriptCore
<rdar://problem/10577239> GC Crash introduced in r102545
Reviewed by Gavin Barraclough.
MarkedArgumentBuffer was still marking items in forwards order, even though
the argument order has been reversed.
I fixed this bug, and replaced address calculation code with some helper
functions -- mallocBase() and slotFor() -- so it stays fixed everywhere.
- runtime/ArgList.cpp:
(JSC::MarkedArgumentBuffer::markLists):
(JSC::MarkedArgumentBuffer::slowAppend):
- runtime/ArgList.h:
(JSC::MarkedArgumentBuffer::~MarkedArgumentBuffer):
(JSC::MarkedArgumentBuffer::at):
(JSC::MarkedArgumentBuffer::append):
(JSC::MarkedArgumentBuffer::last):
(JSC::MarkedArgumentBuffer::slotFor):
(JSC::MarkedArgumentBuffer::mallocBase):
- 6:32 PM Changeset in webkit [102727] by
-
- 3 edits in trunk/Source/WebKit/chromium
chromium port - remove nacl hack in DEPS/gyp_webkit
https://bugs.webkit.org/show_bug.cgi?id=74150
Reviewed by Tony Chang.
This change reverts the change added in r101011; it is
no longer necessary to pull in anything from Native Client for
the chromium port to build.
- DEPS:
- gyp_webkit:
- 5:52 PM Changeset in webkit [102726] by
-
- 5 edits in trunk/Source/WebCore
[chromium] Use HashMap<..., OwnPtr<Tile>> for compositor tilemap
https://bugs.webkit.org/show_bug.cgi?id=74154
Reviewed by James Robinson.
After r102410 landed, it's now possible to properly use an OwnPtr to
store tiles rather than hackily use a RefPtr.
Covered by the compositing/ layout tests.
- platform/graphics/chromium/TiledLayerChromium.cpp:
(WebCore::UpdatableTile::create):
(WebCore::UpdatableTile::UpdatableTile):
(WebCore::TiledLayerChromium::createTile):
- platform/graphics/chromium/cc/CCLayerTilingData.cpp:
(WebCore::CCLayerTilingData::addTile):
(WebCore::CCLayerTilingData::takeTile):
(WebCore::CCLayerTilingData::tileAt):
- platform/graphics/chromium/cc/CCLayerTilingData.h:
- platform/graphics/chromium/cc/CCTiledLayerImpl.cpp:
(WebCore::DrawableTile::create):
(WebCore::DrawableTile::DrawableTile):
(WebCore::CCTiledLayerImpl::createTile):
- 5:52 PM Changeset in webkit [102725] by
-
- 2 edits2 copies in branches/chromium/963
Line breaks are lost when pasted into textarea text starting with a blank line set while textarea is hidden
https://bugs.webkit.org/show_bug.cgi?id=74126
Reviewed by Tony Chang.
The bug was caused by the code that generated text out of pre-rendered text was generating div's inside the fragment
pasted into textarea even though serialization algorithm in textarea doesn't handle block elements.
Fixed the bug by special-casing this in createFragmentFromText. In the long run, we should really get rid of this
whole pre-rendering trick.
- editing/markup.cpp:
(WebCore::createFragmentFromText):
Merge 102392 - Line breaks are lost when pasted into textarea text starting with a blank line set while textarea is hidden
https://bugs.webkit.org/show_bug.cgi?id=74126
Reviewed by Tony Chang.
The bug was caused by the code that generated text out of pre-rendered text was generating div's inside the fragment
pasted into textarea even though serialization algorithm in textarea doesn't handle block elements.
Fixed the bug by special-casing this in createFragmentFromText. In the long run, we should really get rid of this
whole pre-rendering trick.
- editing/markup.cpp:
(WebCore::createFragmentFromText):
http://crbug.com/104620
Review URL: http://codereview.chromium.org/8907027
- 5:51 PM Changeset in webkit [102724] by
-
- 2 edits in trunk/Source/WebKit2
Unreviewed build fix.
- GNUmakefile.am: make sure we do not derreference the target link
if it already exists, and replace it with the new one instead,
otherwise we end up with a gtk link inside
Source/WebKit2/UIProcess/API/gtk, which causes the documentation
build to produce warnings, and make the build fail.
- 5:46 PM Changeset in webkit [102723] by
-
- 14 edits3 adds in trunk
DFG OSR exit for UInt32ToNumber should roll forward, not roll backward
https://bugs.webkit.org/show_bug.cgi?id=74463
Source/JavaScriptCore:
Reviewed by Gavin Barraclough.
Implements roll-forward OSR exit for UInt32ToNumber, which requires ValueRecoveries knowing
how to execute the slow path of UInt32ToNumber.
- bytecode/CodeBlock.h:
(JSC::CodeBlock::lastOSRExit):
- bytecode/CodeOrigin.h:
(JSC::CodeOrigin::operator!=):
- bytecode/ValueRecovery.h:
(JSC::ValueRecovery::uint32InGPR):
(JSC::ValueRecovery::gpr):
(JSC::ValueRecovery::dump):
- dfg/DFGAssemblyHelpers.cpp:
- dfg/DFGAssemblyHelpers.h:
- dfg/DFGOSRExit.h:
(JSC::DFG::OSRExit::valueRecoveryForOperand):
- dfg/DFGOSRExitCompiler32_64.cpp:
(JSC::DFG::OSRExitCompiler::compileExit):
- dfg/DFGOSRExitCompiler64.cpp:
(JSC::DFG::OSRExitCompiler::compileExit):
- dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::SpeculativeJIT::compileUInt32ToNumber):
(JSC::DFG::SpeculativeJIT::compileGetByValOnIntTypedArray):
- dfg/DFGSpeculativeJIT.h:
- dfg/DFGSpeculativeJIT32_64.cpp:
(JSC::DFG::SpeculativeJIT::nonSpeculativeUInt32ToNumber):
(JSC::DFG::SpeculativeJIT::compile):
- dfg/DFGSpeculativeJIT64.cpp:
(JSC::DFG::SpeculativeJIT::nonSpeculativeUInt32ToNumber):
(JSC::DFG::SpeculativeJIT::compile):
LayoutTests:
Reviewed by Gavin Barraclough.
- fast/js/dfg-uint32-to-number-expected.txt: Added.
- fast/js/dfg-uint32-to-number.html: Added.
- fast/js/script-tests/dfg-uint32-to-number.js: Added.
(foo):
- 5:17 PM Changeset in webkit [102722] by
-
- 5 edits in trunk
https://bugs.webkit.org/show_bug.cgi?id=73691
[JSC] Implement correct order of window.postMessage arguments.
This change supports a new signature of windowPostMessage:
postMessage(message, targetOrigin[, transferrables])
as well as the legacy webkit-proprietary:
postMessage(message, [transferrables,] targetOrigin)
The latter is only supported for cases when targetOrigin is a String.
Reviewed by David Levin.
Source/WebCore:
- bindings/js/JSDOMWindowCustom.cpp:
(WebCore::handlePostMessage):
- page/DOMWindow.idl:
LayoutTests:
- fast/dom/Window/window-postmessage-args-expected.txt:
- 5:03 PM Changeset in webkit [102721] by
-
- 9 edits in trunk/Source/WebCore
[MutationObservers] Avoid allocations if no observers are present
https://bugs.webkit.org/show_bug.cgi?id=74423
Patch by Rafael Weinstein <rafaelw@chromium.org> on 2011-12-13
Reviewed by Ojan Vafai.
This patch adds Node::mayHaveMutationObserversOfType which can be used to check
if there are any observers at all which could receive a give type of mutation.
MutationObserverInterestGroup uses this to possibly exit early (returning
null) if no observers are present.
No tests needed. This patch is just a refactor.
- css/CSSMutableStyleDeclaration.cpp:
- dom/CharacterData.cpp:
(WebCore::CharacterData::dispatchModifiedEvent):
- dom/ChildListMutationScope.cpp:
(WebCore::ChildListMutationAccumulator::MutationAccumulationRouter::incrementScopingLevel):
- dom/Element.cpp:
(WebCore::enqueueAttributesMutationRecord):
- dom/Node.cpp:
(WebCore::Node::mayHaveMutationObserversOfType):
- dom/Node.h:
- dom/WebKitMutationObserver.cpp:
(WebCore::MutationObserverInterestGroup::createIfNeeded):
(WebCore::MutationObserverInterestGroup::createForChildListMutation):
(WebCore::MutationObserverInterestGroup::createForCharacterDataMutation):
(WebCore::MutationObserverInterestGroup::createForAttributesMutation):
(WebCore::MutationObserverInterestGroup::MutationObserverInterestGroup):
(WebCore::MutationObserverInterestGroup::enqueueMutationRecord):
- dom/WebKitMutationObserver.h:
- 4:20 PM Changeset in webkit [102720] by
-
- 2 edits in trunk/Source/WebKit/chromium
Export WebArrayBuffer::byteLength
https://bugs.webkit.org/show_bug.cgi?id=74438
Patch by Dave Michael <dmichael@chromium.org> on 2011-12-13
Reviewed by Darin Fisher.
- public/WebArrayBuffer.h:
- 4:07 PM Changeset in webkit [102719] by
-
- 3 edits in trunk/Websites/bugs.webkit.org
Expanding context is broken for prepare-ChangeLog in the code review tool.
https://bugs.webkit.org/show_bug.cgi?id=74458
Reviewed by Adam Barth.
- code-review-test.html:
-Moved all the tests into test* functions.
-Automated calling all test* functions.
-Added testIsChangeLog.
- code-review.js:
Made the check for whether it's a ChangeLog file more robust.
- 4:00 PM Changeset in webkit [102718] by
-
- 3 edits in trunk/Source/WebCore
[wx] Don't make the bitmap transparent when using theme drawing
calls that don't support transparent bitmaps.
https://bugs.webkit.org/show_bug.cgi?id=74319
Reviewed by Kevin Ollivier.
- 3:59 PM Changeset in webkit [102717] by
-
- 2 edits in trunk/Source/WebKit2
REGRESSION (r102652): New window opens with zero size at produbanco.com
<http://webkit.org/b/74418> and <rdar://problem/10565998>
Reviewed by Anders Carlsson.
Don't use the cached window frame if it's empty (meaning we haven't received
a WindowAndViewFramesChanged message yet.) Instead use the synchronous
GetWindowFrame (WP->UIP) message.
This situation occurs when opening a new window via window.open(), in which
WebCore::createWindow() will query the windowRect() on the new window.
I spent a long time trying to write a layout test for this but couldn't come
up with something reliable. The windowRect() is non-empty before we get a
chance to run JS in/on the new window, and we can't check against the
requested geometry since it varies depending on whether the window manager
has shown the new window yet.
- WebProcess/WebCoreSupport/WebChromeClient.cpp:
(WebKit::WebChromeClient::windowRect):
- 3:54 PM Changeset in webkit [102716] by
-
- 2 edits in trunk/LayoutTests
Rolling out r102461, a change to a layout test to try to remove flakiness on Chromium.
http://trac.webkit.org/changeset/102461
Test is still flaky on Chromium, so rollout the change.
- fast/replaced/width100percent-textarea.html:
- 3:50 PM Changeset in webkit [102715] by
-
- 10 edits in trunk
[wx] Add a URL argument to the wxWebView constructor,
and fix page calculations and margins on Windows and Mac.
https://bugs.webkit.org/show_bug.cgi?id=74316
Reviewed by Kevin Ollivier.
- 3:50 PM Changeset in webkit [102714] by
-
- 1 edit in trunk/Source/WebCore/ChangeLog
Inline all of initForRegionStyling except for the rarely used part for non-null regions.
https://bugs.webkit.org/show_bug.cgi?id=74435
Reviewed by Andreas Kling.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::initForRegionStyling): Inline setting of m_regionForStyling
(WebCore::CSSStyleSelector::initRegionRules): Move code that only
applies to CSSRegions into non-inlined code.
- css/CSSStyleSelector.h:
- 3:39 PM Changeset in webkit [102713] by
-
- 2 edits in trunk/Source/WebKit
[Blackberry] Fix a leak in BackingStore class
Don't leak the blit generation condvar and mutex.
https://bugs.webkit.org/show_bug.cgi?id=74444
Patch by Arvid Nilsson <anilsson@rim.com> on 2011-12-13
Reviewed by Antonio Gomes.
- blackberry/Api/BackingStore.cpp:
(BlackBerry::WebKit::BackingStorePrivate::~BackingStorePrivate):
- 3:38 PM Changeset in webkit [102712] by
-
- 3 edits in trunk/Source/WebCore
inline setting m_regionForStyling since region is rarely set
https://bugs.webkit.org/show_bug.cgi?id=74435
Reviewed by Andreas Kling.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::initForRegionStyling):
(WebCore::CSSStyleSelector::initRegionRules):
- css/CSSStyleSelector.h:
- 3:26 PM Changeset in webkit [102711] by
-
- 3 edits in trunk/Websites/bugs.webkit.org
Fix bug in the code review tool when readding a discarded comment
https://bugs.webkit.org/show_bug.cgi?id=74450
Reviewed by Adam Barth.
If you discard a comment that has a corresponding previousComment,
then we would incorrectly remove the comment baseline. So, the next
time you added a comment by clicking on the previousComment, we
would get undefined as the start line for the new comment.
All of this works fine until you try to restore the comment from
localStorage, at which point we throw an error because the start
line is undefined.
Also added some failsafes to better handle the case of corrupted comments.
- code-review-test.html:
- code-review.js:
- 3:19 PM Changeset in webkit [102710] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium expectations update. Expand a couple of existing suppressions.
- platform/chromium/test_expectations.txt:
- 3:17 PM Changeset in webkit [102709] by
-
- 6 edits in trunk
Arguments object doesn't handle mutation of length property correctly
https://bugs.webkit.org/show_bug.cgi?id=74454
Reviewed by Gavin Barraclough.
Source/JavaScriptCore:
Correct handling of arguments objects with overridden length property
- interpreter/Interpreter.cpp:
(JSC::loadVarargs):
- runtime/Arguments.cpp:
(JSC::Arguments::copyToArguments):
(JSC::Arguments::fillArgList):
LayoutTests:
Add tests of mutated arguments.length
- fast/js/arguments-expected.txt:
- fast/js/script-tests/arguments.js:
(argumentLengthIs5):
(duplicateArgumentAndReturnLast_call):
(duplicateArgumentAndReturnFirst_call):
(duplicateArgumentAndReturnLast_apply):
(duplicateArgumentAndReturnFirst_apply):
- 2:24 PM Changeset in webkit [102708] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed, Chromium Mac build fix.
- page/PerformanceTiming.h:
- 2:12 PM Changeset in webkit [102707] by
-
- 2 edits in trunk/Source/JavaScriptCore
DFG GetByVal CSE rule should match PutByValAlias
https://bugs.webkit.org/show_bug.cgi?id=74390
Reviewed by Geoff Garen.
Tiny win on some benchmarks. Maybe a 0.2% win on SunSpider.
- dfg/DFGPropagator.cpp:
(JSC::DFG::Propagator::getByValLoadElimination):
- 2:10 PM Changeset in webkit [102706] by
-
- 2 edits in trunk/Source/JavaScriptCore
Fix interpreter debug build.
https://bugs.webkit.org/show_bug.cgi?id=74439
Patch by Andy Wingo <wingo@igalia.com> on 2011-12-13
Reviewed by Geoffrey Garen.
- bytecode/ValueRecovery.h: Include stdio.h on debug builds.
- 2:05 PM Changeset in webkit [102705] by
-
- 2 edits in trunk/Source/WebCore
Update variable names in NamedNodeMap methods to match WebKit style
https://bugs.webkit.org/show_bug.cgi?id=74437
Reviewed by Ojan Vafai.
While reading these methods in preparation for a refactor, I found
them hard to understand due to short or confusing variable names.
I think the new names are much clearer, and match WebKit style.
- dom/NamedNodeMap.cpp:
(WebCore::NamedNodeMap::setNamedItem):
(WebCore::NamedNodeMap::removeNamedItem):
- 1:50 PM Changeset in webkit [102704] by
-
- 2 edits in trunk/Tools
watchlist: Add watchlist for EFL, CMake and libsoup code and put myself on it.
https://bugs.webkit.org/show_bug.cgi?id=74430
Reviewed by David Levin.
- Scripts/webkitpy/common/config/watchlist:
- 1:42 PM Changeset in webkit [102703] by
-
- 2 edits in trunk/Source/WebKit/chromium
Unreviewed, rolling out r102693.
http://trac.webkit.org/changeset/102693
https://bugs.webkit.org/show_bug.cgi?id=74334
Broke Chromium Windows DRT build
- features.gypi:
- 1:42 PM Changeset in webkit [102702] by
-
- 4 edits in trunk/Source/WebCore
Implement a function of vector multiply with SSE2 optimization in VectorMath.cpp.
https://bugs.webkit.org/show_bug.cgi?id=74048
Patch by Xingnan Wang <xingnan.wang@intel.com> on 2011-12-13
Reviewed by Benjamin Poulain.
The vmul is a function for an element-by-element multiply of two float vectors and we
get about 3.4x performance improvement with SSE2 optimization compared with the common
multiply.
Use vmul in AudioBus::copyWithSampleAccurateGainValuesFrom().
- platform/audio/AudioBus.cpp:
(WebCore::AudioBus::copyWithSampleAccurateGainValuesFrom):
- platform/audio/VectorMath.cpp:
(WebCore::VectorMath::vmul):
- platform/audio/VectorMath.h:
- 1:27 PM Changeset in webkit [102701] by
-
- 2 edits in trunk/Source/WebCore
Web Inspector: [Regression] ResourceHeadersView sections should be expanded by default.
https://bugs.webkit.org/show_bug.cgi?id=74434
Reviewed by Pavel Feldman.
- inspector/front-end/treeoutline.js:
- 1:23 PM Changeset in webkit [102700] by
-
- 5 edits in trunk
[Chromium] Pull in FreeType and decrease check-out complexity for Android
https://bugs.webkit.org/show_bug.cgi?id=74401
Source/WebKit/chromium:
Pull in FreeType in the third_party/ directory from a separate git
repository at Chromium. This introduces a new prerequisite for checking
out the Chromium WebKit port for Android, namely that git needs to be
available on the system. gclient can handle this just fine.
Reviewed by Adam Barth.
- DEPS:
Tools:
Decrease the check-out complexity by removing the need to first run
"update-webkit-chromium --chromium" prior to running it with
"--chromium-android", which was caused by an unversioned third_party/
directory being created. This moves the Android NDK to Source/WebKit/
chromium/, coming from third_party/ in that directory.
Reviewed by Adam Barth.
- Scripts/update-webkit-chromium:
- Scripts/webkitdirs.pm:
(buildChromiumMakefile):
- 1:19 PM Changeset in webkit [102699] by
-
- 3 edits2 adds in trunk
Web Inspector: Network item view does not correctly decode "+" in request parameters.
https://bugs.webkit.org/show_bug.cgi?id=74422
Reviewed by Pavel Feldman.
Source/WebCore:
Test: http/tests/inspector/network/request-parameters-decoding.html
- inspector/front-end/ResourceHeadersView.js:
(WebInspector.ResourceHeadersView.prototype._formatParameter):
(WebInspector.ResourceHeadersView.prototype._refreshParms):
LayoutTests:
- http/tests/inspector/network/request-parameters-decoding-expected.txt: Added.
- http/tests/inspector/network/request-parameters-decoding.html: Added.
- 1:12 PM Changeset in webkit [102698] by
-
- 13 edits in trunk/Source
[chromium] compositing/masks layout tests fail with accelerated drawing
https://bugs.webkit.org/show_bug.cgi?id=72760
Reviewed by Stephen White.
Source/WebCore:
Accelerated drawing path used to render bottom-up upright textures, which was opposite of what the software path rendered.
The textures produced by the accelerated path was flipped along Y in the shader to make it upside down as expected by the compositor.
This strategy does not work in case of masks which do not go through a shader and hence do not get flipped,
which results in a case where texture in the render surface is top-down, while that in the mask is bottom-up.
This patch makes accelerated drawing path render textures in the same orientation as the software path.
LayerTextureUpdater::Orientation was added to support the difference in texture orientation between software and accelerated paths.
Now that both paths produce textures in the same orientation, there is no need for it.
No new tests needed. Covered by existing compositing tests.
- platform/graphics/chromium/BitmapCanvasLayerTextureUpdater.h:
- platform/graphics/chromium/BitmapSkPictureCanvasLayerTextureUpdater.h:
- platform/graphics/chromium/FrameBufferSkPictureCanvasLayerTextureUpdater.cpp:
(WebCore::FrameBufferSkPictureCanvasLayerTextureUpdater::updateTextureRect):
- platform/graphics/chromium/FrameBufferSkPictureCanvasLayerTextureUpdater.h:
- platform/graphics/chromium/ImageLayerChromium.cpp:
- platform/graphics/chromium/LayerTextureUpdater.h:
- platform/graphics/chromium/TiledLayerChromium.cpp:
(WebCore::TiledLayerChromium::TiledLayerChromium):
(WebCore::TiledLayerChromium::setLayerTreeHost):
(WebCore::TiledLayerChromium::pushPropertiesTo):
- platform/graphics/chromium/TiledLayerChromium.h:
- platform/graphics/chromium/cc/CCTiledLayerImpl.cpp:
(WebCore::CCTiledLayerImpl::drawTiles):
- platform/graphics/chromium/cc/CCTiledLayerImpl.h:
(WebCore::CCTiledLayerImpl::setSkipsDraw):
Source/WebKit/chromium:
- tests/TiledLayerChromiumTest.cpp:
(WTF::FakeLayerTextureUpdater::createTexture):
- 12:53 PM Changeset in webkit [102697] by
-
- 9 edits in trunk
Implement GLES2 CheckFramebufferStatus() behavior
https://bugs.webkit.org/show_bug.cgi?id=74228
Reviewed by Kenneth Russell.
Source/WebCore:
- html/canvas/WebGLFramebuffer.cpp:
(WebCore::WebGLFramebuffer::getColorBufferWidth): Add ColorBuffer to the function name - this is more accurate.
(WebCore::WebGLFramebuffer::getColorBufferHeight): Ditto.
(WebCore::WebGLFramebuffer::checkStatus): Implement full semantics of GLES2 glCheckFramebufferStatus().
(WebCore::WebGLFramebuffer::onAccess): Call checkStatus().
- html/canvas/WebGLFramebuffer.h:
- html/canvas/WebGLRenderingContext.cpp:
(WebCore::WebGLRenderingContext::checkFramebufferStatus): Call checkStatus().
(WebCore::WebGLRenderingContext::getFramebufferAttachmentParameter): No longer check framebuffer status.
(WebCore::WebGLRenderingContext::getBoundFramebufferWidth): Call getColorBufferWidth.
(WebCore::WebGLRenderingContext::getBoundFramebufferHeight): Call getColorBufferHeight.
LayoutTests:
- fast/canvas/webgl/framebuffer-object-attachment-expected.txt:
- fast/canvas/webgl/framebuffer-object-attachment.html: sync with khronos side, the whole file
- fast/canvas/webgl/resources/webgl-test.js: synced with khronos side, two listed functions
(shouldGenerateGLError):
(glErrorShouldBe):
- platform/chromium/test_expectations.txt: Mark framebuffer-object-*.html as failing due to mesa lib bug.
- 12:48 PM Changeset in webkit [102696] by
-
- 20 edits1 copy1 add in trunk
[Navigation Timing] Use monotonicallyIncreasingTime() instead of currentTime()
https://bugs.webkit.org/show_bug.cgi?id=58354
Reviewed by Pavel Feldman.
No new tests. Relies on existing webtiming-* tests.
- CMakeLists.txt:
- GNUmakefile.list.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- dom/Document.cpp: Use monotonic times.
(WebCore::Document::setReadyState):
(WebCore::Document::finishedParsing):
- inspector/InspectorInstrumentation.cpp:
(WebCore::InspectorInstrumentation::didFinishLoadingImpl): Convert monotonicFinishTime to wall time if needed.
- inspector/InspectorResourceAgent.cpp:
(WebCore::buildObjectForTiming): Convert monotonic requestTime to wall time.
(WebCore::buildObjectForResourceResponse): Plumbing for above.
(WebCore::buildObjectForCachedResource): Ditto.
(WebCore::InspectorResourceAgent::willSendRequest): Ditto.
(WebCore::InspectorResourceAgent::didReceiveResponse): Ditto.
(WebCore::InspectorResourceAgent::didLoadResourceFromMemoryCache): Ditto.
- loader/DocumentLoadTiming.cpp: Added.
(WebCore::DocumentLoadTiming::DocumentLoadTiming):
(WebCore::DocumentLoadTiming::setNavigationStart): Determine reference time and root reference time.
(WebCore::DocumentLoadTiming::addRedirect): Moved logic from MainResourceLoader.
(WebCore::DocumentLoadTiming::convertMonotonicTimeToDocumentTime): Helper to compute wall time from monotonic time.
- loader/DocumentLoadTiming.h: Turned into class. Made times monotonic.
(WebCore::DocumentLoadTiming::setUnloadEventStart):
(WebCore::DocumentLoadTiming::setUnloadEventEnd):
(WebCore::DocumentLoadTiming::setRedirectStart):
(WebCore::DocumentLoadTiming::setRedirectEnd):
(WebCore::DocumentLoadTiming::setFetchStart):
(WebCore::DocumentLoadTiming::setResponseEnd):
(WebCore::DocumentLoadTiming::setLoadEventStart):
(WebCore::DocumentLoadTiming::setLoadEventEnd):
(WebCore::DocumentLoadTiming::setHasSameOriginAsPreviousDocument):
(WebCore::DocumentLoadTiming::navigationStart):
(WebCore::DocumentLoadTiming::unloadEventStart):
(WebCore::DocumentLoadTiming::unloadEventEnd):
(WebCore::DocumentLoadTiming::redirectStart):
(WebCore::DocumentLoadTiming::redirectEnd):
(WebCore::DocumentLoadTiming::redirectCount):
(WebCore::DocumentLoadTiming::fetchStart):
(WebCore::DocumentLoadTiming::responseEnd):
(WebCore::DocumentLoadTiming::loadEventStart):
(WebCore::DocumentLoadTiming::loadEventEnd):
(WebCore::DocumentLoadTiming::hasCrossOriginRedirect):
(WebCore::DocumentLoadTiming::hasSameOriginAsPreviousDocument):
- loader/FrameLoader.cpp:
(WebCore::FrameLoader::stopLoading):
(WebCore::FrameLoader::commitProvisionalLoad):
(WebCore::FrameLoader::continueLoadAfterWillSubmitForm):
(WebCore::FrameLoader::loadProvisionalItemFromCachedPage):
- loader/MainResourceLoader.cpp:
(WebCore::MainResourceLoader::continueAfterNavigationPolicy):
(WebCore::MainResourceLoader::willSendRequest): Moved logic to DocumentLoadTiming.
(WebCore::MainResourceLoader::didReceiveData): Use monotonic time.
(WebCore::MainResourceLoader::didFinishLoading): Ditto.
(WebCore::MainResourceLoader::load):
- page/DOMWindow.cpp:
(WebCore::DOMWindow::dispatchLoadEvent):
- page/DOMWindow.h: Removed dispatchTimedEvent. It doesn't really help in the new model.
- page/PerformanceNavigation.cpp:
(WebCore::PerformanceNavigation::redirectCount):
- page/PerformanceTiming.cpp: Removed skew correction code. This should never happen now.
(WebCore::PerformanceTiming::navigationStart):
(WebCore::PerformanceTiming::unloadEventStart):
(WebCore::PerformanceTiming::unloadEventEnd):
(WebCore::PerformanceTiming::redirectStart):
(WebCore::PerformanceTiming::redirectEnd):
(WebCore::PerformanceTiming::fetchStart):
(WebCore::PerformanceTiming::responseEnd):
(WebCore::PerformanceTiming::domLoading):
(WebCore::PerformanceTiming::domInteractive):
(WebCore::PerformanceTiming::domContentLoadedEventStart):
(WebCore::PerformanceTiming::domContentLoadedEventEnd):
(WebCore::PerformanceTiming::domComplete):
(WebCore::PerformanceTiming::loadEventStart):
(WebCore::PerformanceTiming::loadEventEnd):
(WebCore::PerformanceTiming::resourceLoadTimeRelativeToAbsolute): Used for ResourceLoadTiming.
(WebCore::PerformanceTiming::monotonicTimeToIntegerMilliseconds): Used for DocumentTiming and DocumentLoadTiming.
- page/PerformanceTiming.h:
- platform/network/ResourceLoadTiming.cpp:
(WebCore::ResourceLoadTiming::convertResourceLoadTimeToDocumentTime):
- platform/network/ResourceLoadTiming.h: Added helper function to convert to wall times. Added instructions for use.
- 12:40 PM Changeset in webkit [102695] by
-
- 3 edits in trunk/Source/WebCore
Reduce code duplication in Element::setAttribute methods
https://bugs.webkit.org/show_bug.cgi?id=74425
Reviewed by Ryosuke Niwa.
Two overloads of Element::setAttribute share almost all their code,
including tricky logic around updating the appropriate Attribute and
Attr objects and notifying the Inspector and MutationObservers.
This patch puts the common logic in a new setAttributeInternal method
which is called by the other two.
No new tests, refactoring only.
- dom/Element.cpp:
(WebCore::Element::setAttribute):
(WebCore::Element::setAttributeInternal):
- dom/Element.h:
- 11:49 AM Changeset in webkit [102694] by
-
- 20 edits1 copy1 add in trunk/Source/JavaScriptCore
DFG should know exactly why recompilation was triggered
https://bugs.webkit.org/show_bug.cgi?id=74362
Reviewed by Oliver Hunt.
Each OSR exit is now individually counted, as well as counting the total number
of OSR exits that occurred in a code block. If recompilation is triggered, we
check to see if there are OSR exit sites that make up a sufficiently large
portion of the total OSR exits that occurred. For any such OSR exit sites, we
add a description of the site (bytecode index, kind) to a data structure in the
corresponding baseline CodeBlock. Then, when we recompile the code, we immediately
know which speculations would be unwise based on the fact that previous such
speculations proved to be fruitless.
This means 2% win on two of the SunSpider string tests, a 4% win on V8's deltablue,
and 5% on Kraken's imaging-darkroom. It is only a minor win in the averages, less
than 0.5%.
- CMakeLists.txt:
- GNUmakefile.list.am:
- JavaScriptCore.xcodeproj/project.pbxproj:
- Target.pri:
- bytecode/CodeBlock.cpp:
(JSC::CodeBlock::tallyFrequentExitSites):
- bytecode/CodeBlock.h:
(JSC::CodeBlock::addFrequentExitSite):
(JSC::CodeBlock::exitProfile):
(JSC::CodeBlock::reoptimize):
(JSC::CodeBlock::tallyFrequentExitSites):
- bytecode/DFGExitProfile.cpp: Added.
(JSC::DFG::ExitProfile::ExitProfile):
(JSC::DFG::ExitProfile::~ExitProfile):
(JSC::DFG::ExitProfile::add):
(JSC::DFG::QueryableExitProfile::QueryableExitProfile):
(JSC::DFG::QueryableExitProfile::~QueryableExitProfile):
- bytecode/DFGExitProfile.h: Added.
(JSC::DFG::exitKindToString):
(JSC::DFG::exitKindIsCountable):
(JSC::DFG::FrequentExitSite::FrequentExitSite):
(JSC::DFG::FrequentExitSite::operator!):
(JSC::DFG::FrequentExitSite::operator==):
(JSC::DFG::FrequentExitSite::hash):
(JSC::DFG::FrequentExitSite::bytecodeOffset):
(JSC::DFG::FrequentExitSite::kind):
(JSC::DFG::FrequentExitSite::isHashTableDeletedValue):
(JSC::DFG::FrequentExitSiteHash::hash):
(JSC::DFG::FrequentExitSiteHash::equal):
(JSC::DFG::QueryableExitProfile::hasExitSite):
- dfg/DFGAssemblyHelpers.h:
(JSC::DFG::AssemblyHelpers::baselineCodeBlockForOriginAndBaselineCodeBlock):
(JSC::DFG::AssemblyHelpers::baselineCodeBlockFor):
- dfg/DFGByteCodeParser.cpp:
(JSC::DFG::ByteCodeParser::makeSafe):
(JSC::DFG::ByteCodeParser::makeDivSafe):
(JSC::DFG::ByteCodeParser::handleCall):
(JSC::DFG::ByteCodeParser::handleIntrinsic):
(JSC::DFG::ByteCodeParser::parseBlock):
(JSC::DFG::ByteCodeParser::InlineStackEntry::InlineStackEntry):
- dfg/DFGOSRExit.cpp:
(JSC::DFG::OSRExit::OSRExit):
(JSC::DFG::OSRExit::considerAddingAsFrequentExitSiteSlow):
- dfg/DFGOSRExit.h:
(JSC::DFG::OSRExit::considerAddingAsFrequentExitSite):
- dfg/DFGOSRExitCompiler.cpp:
- dfg/DFGOSRExitCompiler32_64.cpp:
(JSC::DFG::OSRExitCompiler::compileExit):
- dfg/DFGOSRExitCompiler64.cpp:
(JSC::DFG::OSRExitCompiler::compileExit):
- dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::SpeculativeJIT::compilePeepHoleObjectEquality):
(JSC::DFG::SpeculativeJIT::checkArgumentTypes):
(JSC::DFG::SpeculativeJIT::compileGetCharCodeAt):
(JSC::DFG::SpeculativeJIT::compileGetByValOnString):
(JSC::DFG::SpeculativeJIT::compilePutByValForByteArray):
(JSC::DFG::SpeculativeJIT::compileGetByValOnByteArray):
(JSC::DFG::SpeculativeJIT::compileGetTypedArrayLength):
(JSC::DFG::SpeculativeJIT::compileGetByValOnIntTypedArray):
(JSC::DFG::SpeculativeJIT::compilePutByValForIntTypedArray):
(JSC::DFG::SpeculativeJIT::compileGetByValOnFloatTypedArray):
(JSC::DFG::SpeculativeJIT::compilePutByValForFloatTypedArray):
(JSC::DFG::SpeculativeJIT::compileInstanceOfForObject):
(JSC::DFG::SpeculativeJIT::compileSoftModulo):
(JSC::DFG::SpeculativeJIT::compileArithMul):
(JSC::DFG::SpeculativeJIT::compileGetIndexedPropertyStorage):
- dfg/DFGSpeculativeJIT.h:
(JSC::DFG::SpeculativeJIT::speculationCheck):
(JSC::DFG::SpeculativeJIT::terminateSpeculativeExecution):
- dfg/DFGSpeculativeJIT32_64.cpp:
(JSC::DFG::SpeculativeJIT::fillSpeculateIntInternal):
(JSC::DFG::SpeculativeJIT::fillSpeculateDouble):
(JSC::DFG::SpeculativeJIT::fillSpeculateCell):
(JSC::DFG::SpeculativeJIT::fillSpeculateBoolean):
(JSC::DFG::SpeculativeJIT::compileObjectEquality):
(JSC::DFG::SpeculativeJIT::compileObjectOrOtherLogicalNot):
(JSC::DFG::SpeculativeJIT::emitObjectOrOtherBranch):
(JSC::DFG::SpeculativeJIT::compile):
- dfg/DFGSpeculativeJIT64.cpp:
(JSC::DFG::SpeculativeJIT::fillSpeculateIntInternal):
(JSC::DFG::SpeculativeJIT::fillSpeculateDouble):
(JSC::DFG::SpeculativeJIT::fillSpeculateCell):
(JSC::DFG::SpeculativeJIT::fillSpeculateBoolean):
(JSC::DFG::SpeculativeJIT::compileObjectEquality):
(JSC::DFG::SpeculativeJIT::compileObjectOrOtherLogicalNot):
(JSC::DFG::SpeculativeJIT::compileLogicalNot):
(JSC::DFG::SpeculativeJIT::emitObjectOrOtherBranch):
(JSC::DFG::SpeculativeJIT::emitBranch):
(JSC::DFG::SpeculativeJIT::compile):
- runtime/Heuristics.cpp:
(JSC::Heuristics::initializeHeuristics):
- runtime/Heuristics.h:
- 11:43 AM Changeset in webkit [102693] by
-
- 2 edits in trunk/Source/WebKit/chromium
Enable CSS_FILTERS in Chromium.
https://bugs.webkit.org/show_bug.cgi?id=74334
Reviewed by Kenneth Russell.
- features.gypi:
- 11:39 AM Changeset in webkit [102692] by
-
- 3 edits in trunk/Source/JavaScriptCore
Cleanup of StringImpl::equal in r102631 post commit
https://bugs.webkit.org/show_bug.cgi?id=74421
Reviewed by Darin Adler.
- wtf/text/AtomicString.h:
(WTF::operator==): Removed cast no longer needed.
- wtf/text/StringImpl.h:
(WTF::equal): Changed template to several overloaded methods.
- 10:48 AM Changeset in webkit [102691] by
-
- 3 edits in trunk/Source/WebCore
<http://webkit.org/b/74420> Disable deprecation warnings around more code where we
cannot easily switch away from the deprecated APIs.
Reviewed by Mark Rowe.
- bindings/objc/DOMInternal.mm:
- bridge/objc/objc_instance.mm:
- 10:34 AM Changeset in webkit [102690] by
-
- 3 edits2 adds in trunk
CSS 2.1 failure: eof-002.htm fails
https://bugs.webkit.org/show_bug.cgi?id=74309
Reviewed by Dean Jackson.
Source/WebCore:
Test: css2.1/20110323/eof-002-expected.html
- css/CSSGrammar.y: Treat EOF during a function expression with an open parenthesis as a close parenthesis.
LayoutTests:
- css2.1/20110323/eof-002-expected.html: Added.
- css2.1/20110323/eof-002.htm: Added.
- 10:23 AM Changeset in webkit [102689] by
-
- 4 edits in branches/chromium/963/Source
Merge 102611 - [chromium] Remove assumption that empty surface is always at end of list
https://bugs.webkit.org/show_bug.cgi?id=74037
Patch by Shawn Singh <shawnsingh@chromium.org> on 2011-12-12
Reviewed by James Robinson.
Source/WebCore:
Test case added to CCLayerTreeHostCommonTest.cpp, which reproduces
a crash reported in http://code.google.com/p/chromium/issues/detail?id=106734
This patch fixes the crash in a less risky way to be merged into
m17, but the root of the issue needs to be addressed in a
follow-up patch.
- platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp:
(WebCore::calculateDrawTransformsAndVisibilityInternal):
Source/WebKit/chromium:
- tests/CCLayerTreeHostCommonTest.cpp:
(WebCore::TEST):
BUG=106734
TBR=jamesr@chromium.org
Review URL: http://codereview.chromium.org/8890079
- 10:20 AM Changeset in webkit [102688] by
-
- 4 edits in trunk/Source/WebCore
V8Proxy cleanup: replace custom logging methods with standard WebCore calls
https://bugs.webkit.org/show_bug.cgi?id=74220
Reviewed by Adam Barth.
- bindings/v8/V8Proxy.cpp:
(WebCore::V8Proxy::reportUnsafeAccessTo):
- bindings/v8/V8Proxy.h:
- bindings/v8/custom/V8CustomXPathNSResolver.cpp:
(WebCore::V8CustomXPathNSResolver::lookupNamespaceURI):
- 10:19 AM Changeset in webkit [102687] by
-
- 3 edits in branches/chromium/963/Source/WebKit/chromium
Revert 102683 - Revert 96912 - Always call setActive() in WebViewImpl::setFocus(),
not just when enabling focus.
https://bugs.webkit.org/show_bug.cgi?id=65220
Reviewed by Darin Fisher.
- WebKit.gyp:
- WebKit.gypi:
- src/WebViewImpl.cpp:
(WebKit::WebViewImpl::setFocus):
- tests/FrameTestHelpers.cpp: Added, refactored out of WebFrameTest.cpp.
(WebKit::FrameTestHelpers::registerMockedURLLoad):
(WebKit::FrameTestHelpers::loadFrame):
(WebKit::FrameTestHelpers::defaultWebFrameClient):
(WebKit::FrameTestHelpers::defaultWebViewClient):
(WebKit::FrameTestHelpers::createWebViewAndLoad):
- tests/FrameTestHelpers.h: Added, refactored out of WebFrameTest.cpp.
- tests/WebFrameTest.cpp:
- tests/WebViewTest.cpp: Added.
TBR=Nate Chapin
Review URL: http://codereview.chromium.org/8895026
TBR=Nate Chapin
Review URL: http://codereview.chromium.org/8929009
- 10:12 AM Changeset in webkit [102686] by
-
- 1 edit in trunk/Tools/ChangeLog
Fix the 'Reviewed by' field in my last ChangeLog entry.
- 10:10 AM Changeset in webkit [102685] by
-
- 3 edits in trunk/Tools
build-jsc passing incorrect args to buildGtkProject
https://bugs.webkit.org/show_bug.cgi?id=74308
Reviewed by NOBODY.
- Scripts/build-webkit: Instead of invoking buildGtkProject with
another argument about webkit2, unshift a --disable-webkit2
argument onto the buildArgs.
- Scripts/webkitdirs.pm: Remove $enableWebKit2 arg. Only save autogen.sh
arguments for WebKit to prevent unnecessary reconfiguration when build-webkit
and build-jsc are run one after the other.
- 9:20 AM Changeset in webkit [102684] by
-
- 2 edits in trunk/Tools
[Qt] REGRESSION(102679): It broke Qt5-WK1 build
https://bugs.webkit.org/show_bug.cgi?id=74413
Unreviewed buildfix.
- qmake/mkspecs/features/webcore.prf: Temporarily revert a part of r102679 until a proper fix.
- 9:13 AM Changeset in webkit [102683] by
-
- 4 edits in branches/chromium/963/Source/WebKit/chromium
Revert 96912 - Always call setActive() in WebViewImpl::setFocus(),
not just when enabling focus.
https://bugs.webkit.org/show_bug.cgi?id=65220
Reviewed by Darin Fisher.
- WebKit.gyp:
- WebKit.gypi:
- src/WebViewImpl.cpp:
(WebKit::WebViewImpl::setFocus):
- tests/FrameTestHelpers.cpp: Added, refactored out of WebFrameTest.cpp.
(WebKit::FrameTestHelpers::registerMockedURLLoad):
(WebKit::FrameTestHelpers::loadFrame):
(WebKit::FrameTestHelpers::defaultWebFrameClient):
(WebKit::FrameTestHelpers::defaultWebViewClient):
(WebKit::FrameTestHelpers::createWebViewAndLoad):
- tests/FrameTestHelpers.h: Added, refactored out of WebFrameTest.cpp.
- tests/WebFrameTest.cpp:
- tests/WebViewTest.cpp: Added.
TBR=Nate Chapin
Review URL: http://codereview.chromium.org/8895026
- 8:31 AM Changeset in webkit [102682] by
-
- 2 edits in trunk/LayoutTests
[skia] need new baselines when SKIA_TEXT is enabled
https://bugs.webkit.org/show_bug.cgi?id=74408
Reviewed by NOBODY. unreviewed, update expectations
- platform/chromium/test_expectations.txt:
- 8:26 AM Changeset in webkit [102681] by
-
- 3 edits in trunk/Tools
[Qt] Unreviewed speculativ debug buildfix after r102679.
- QtTestBrowser/QtTestBrowser.pro:
- QtTestBrowser/main.cpp:
- 7:47 AM Changeset in webkit [102680] by
-
- 7 edits in trunk/Source/WebKit2
[Qt][WK2] Make QtPageClient dispatch directly to WebView when possible
https://bugs.webkit.org/show_bug.cgi?id=74407
Reviewed by Simon Hausmann.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::QQuickWebViewPrivate):
(QQuickWebViewPrivate::~QQuickWebViewPrivate):
(QQuickWebViewPrivate::initialize):
(QQuickWebViewPrivate::pageDidRequestScroll):
(QQuickWebViewPrivate::processDidCrash):
(QQuickWebViewPrivate::didRelaunchProcess):
(QQuickWebViewPrivate::viewSize):
(QQuickWebViewPrivate::didReceiveMessageFromNavigatorQtObject):
(QQuickWebViewExperimental::QQuickWebViewExperimental):
(QQuickWebView::QQuickWebView):
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/qt/QtPageClient.cpp:
(QtPageClient::QtPageClient):
(QtPageClient::setViewNeedsDisplay):
(QtPageClient::pageDidRequestScroll):
(QtPageClient::processDidCrash):
(QtPageClient::didRelaunchProcess):
(QtPageClient::didChangeContentsSize):
(QtPageClient::didChangeViewportProperties):
(QtPageClient::createPopupMenuProxy):
(QtPageClient::didReceiveMessageFromNavigatorQtObject):
(QtPageClient::viewSize):
(QtPageClient::isViewFocused):
(QtPageClient::isViewVisible):
- UIProcess/qt/QtPageClient.h:
(QtPageClient::initialize):
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::QtWebPageProxy):
- UIProcess/qt/QtWebPageProxy.h:
- 7:19 AM Changeset in webkit [102679] by
-
- 17 edits in trunk
[Qt] Get rid of layering violations in includes
WebKit/qt/API and WebKit/qt/WebCoreSupport should not be included
in the webcore.prf, but rather in each target that specificly needs
headers in these location. We used to include them directly in webcore
since we had layering violations between WebCore and WebKit, but now
that they are gone there's no reason to do that.
Reviewed by Simon Hausmann.
- 7:13 AM Changeset in webkit [102678] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, skip 4 new failing tests on GTK.
- platform/gtk/Skipped:
- 5:41 AM Changeset in webkit [102677] by
-
- 2 edits in trunk/Tools
[NRWT] It crashes intermittently when there are WebProcess crashes
https://bugs.webkit.org/show_bug.cgi?id=73451
Use self.poll() instead of self._proc.poll() because it checks if self._proc is None or not.
Patch by János Badics <dicska@gmail.com> on 2011-12-13
Reviewed by Kenneth Rohde Christiansen.
- Scripts/webkitpy/layout_tests/port/server_process.py:
(ServerProcess._check_for_crash):
- 5:39 AM Changeset in webkit [102676] by
-
- 2 edits in trunk/Tools
Unreviewed. Fix GTK+ API docs build.
- gtk/generate-gtkdoc:
(get_webkit2_options): Ignore WebKitUIClient since it's private
API.
- 5:31 AM Changeset in webkit [102675] by
-
- 7 edits in trunk/Source/WebKit2
[GTK] Add support for javascript dialogs in WebKit2 GTK+ API
https://bugs.webkit.org/show_bug.cgi?id=71362
Reviewed by Martin Robinson.
- UIProcess/API/gtk/WebKitUIClient.cpp:
(runJavaScriptAlert): Call webkitWebViewRunJavaScriptAlert().
(runJavaScriptConfirm): Call webkitWebViewRunJavaScriptConfirm().
(runJavaScriptPrompt): Call webkitWebViewRunJavaScriptPrompt().
(webkitUIClientAttachUIClientToPage): Add implementation for
runJavaScriptAlert, runJavaScriptConfirm and runJavaScriptPrompt
callbacks.
- UIProcess/API/gtk/WebKitWebView.cpp:
(webkitWebViewCreateJavaScriptDialog): Helper function to create
javascript dialogs.
(webkitWebViewScriptAlert): Default implementation of signal
WebKitWebView::script-alert that shows a message dialog.
(webkitWebViewScriptConfirm): Default implementation of signal
WebKitWebView::script-confirm that shows a question dialog.
(webkitWebViewScriptPrompt): Default implementation of signal
WebKitWebView::script-prompt that shows a question dialog with a
text entry.
(webkit_web_view_class_init):
(webkitWebViewRunJavaScriptAlert): Emit WebKitWebView::script-alert.
(webkitWebViewRunJavaScriptConfirm): Emit WebKitWebView::script-confirm.
(webkitWebViewRunJavaScriptPrompt): Emit WebKitWebView::script-prompt.
- UIProcess/API/gtk/WebKitWebView.h:
- UIProcess/API/gtk/WebKitWebViewPrivate.h:
- UIProcess/API/gtk/tests/TestWebKitWebView.cpp:
(testWebViewJavaScriptDialogs):
(beforeAll):
- UIProcess/API/gtk/webkit2marshal.list:
- 5:28 AM Changeset in webkit [102674] by
-
- 4 edits in trunk/Source/WebKit2
[Qt] Make sure that touch events result in the page view gaining focus
Reviewed by Simon Hausmann.
- UIProcess/API/qt/qquickwebpage.cpp:
(QQuickWebPage::touchEvent): Force active focus.
- UIProcess/API/qt/qquickwebview.cpp:
- UIProcess/API/qt/qquickwebview_p.h: Remove ::touchEvent override.
- 5:23 AM Changeset in webkit [102673] by
-
- 7 edits2 adds in trunk/Source/WebKit2
[GTK] Initial UI client implementation for WebKit2 GTK +API
https://bugs.webkit.org/show_bug.cgi?id=69753
Reviewed by Martin Robinson.
- GNUmakefile.am: Add new files to compilation.
- UIProcess/API/gtk/WebKitUIClient.cpp: Added.
(createNewPage): Call webkitWebViewCreateNewPage.
(showPage): Call webkitWebViewReadyToShowPage.
(closePage): Call webkitWebViewClosePage.
(webkitUIClientAttachUIClientToPage): Initialize UI client and
attach it to the given page.
(webkit_ui_client_init):
(webkit_ui_client_class_init):
- UIProcess/API/gtk/WebKitUIClient.h: Added.
- UIProcess/API/gtk/WebKitWebView.cpp:
(webkitWebViewCreate): Default implementation of signal
WebKitWebView::create that simply returns NULL.
(webkitWebViewConstructed): Create the default UI client.
(webkitWebViewAccumulatorObjectHandled):
(webkit_web_view_class_init):
(webkitWebViewCreateNewPage): Emit create signal.
(webkitWebViewReadyToShowPage): Emit ready-to-show signal.
(webkitWebViewClosePage): Emit close signal.
- UIProcess/API/gtk/WebKitWebView.h:
- UIProcess/API/gtk/WebKitWebViewPrivate.h:
- UIProcess/API/gtk/tests/TestWebKitWebView.cpp:
(testWebViewCreateReadyClose):
(beforeAll):
- UIProcess/API/gtk/webkit2marshal.list:
- 5:13 AM Changeset in webkit [102672] by
-
- 1 edit3 adds in trunk/LayoutTests
[Qt] Add Qt platform specific expected result after r102602.
Unreviewed gardening.
Patch by Oliver Varga <voliver@inf.u-szeged.hu> on 2011-12-13
- platform/qt/http/tests/cache/cancel-during-revalidation-succeeded-expected.png: Added.
- platform/qt/http/tests/cache/cancel-during-revalidation-succeeded-expected.txt: Added.
- 4:45 AM Changeset in webkit [102671] by
-
- 18 edits2 adds in trunk
Web Inspector: Add scripts navigator sidebar to scripts panel.
https://bugs.webkit.org/show_bug.cgi?id=73086
Reviewed by Pavel Feldman.
Source/WebCore:
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- inspector/compile-front-end.sh:
- inspector/front-end/Images/domain.png: Added.
- inspector/front-end/JavaScriptSourceFrame.js:
(WebInspector.JavaScriptSourceFrame.prototype.suggestedFileName):
- inspector/front-end/ScriptsNavigator.js: Added.
- inspector/front-end/ScriptsPanel.js:
(WebInspector.ScriptsPanel.prototype._uiSourceCodeAdded.get if):
(WebInspector.ScriptsPanel.prototype._uiSourceCodeRemoved):
(WebInspector.ScriptsPanel.prototype._addOptionToFilesSelect):
(WebInspector.ScriptsPanel.prototype._reset):
(WebInspector.ScriptsPanel.prototype._removeSourceFrame):
(WebInspector.ScriptsPanel.prototype._uiSourceCodeReplaced):
(WebInspector.ScriptsPanel.prototype._sourceFrameLoaded):
(WebInspector.ScriptsPanel.prototype._updateExecutionLine):
(WebInspector.ScriptsPanel.prototype._scriptSelectedInNavigator):
(WebInspector.ScriptsPanel.prototype._createDebugToolbar):
- inspector/front-end/Settings.js:
- inspector/front-end/TabbedPane.js:
(WebInspector.TabbedPane.prototype.appendTab):
(WebInspector.TabbedPane.prototype.selectTab):
(WebInspector.TabbedPane.prototype.highlightLine):
(WebInspector.TabbedPane.prototype.elementsToRestoreScrollPositionsFor):
- inspector/front-end/UISourceCode.js:
(WebInspector.UISourceCode.prototype.get domain):
(WebInspector.UISourceCode.prototype.get folderName):
(WebInspector.UISourceCode.prototype.get displayName):
(WebInspector.UISourceCode.prototype._parseURL):
- inspector/front-end/WebKit.qrc:
- inspector/front-end/inspector.css:
(.tabbed-pane):
(.tabbed-pane-content):
- inspector/front-end/inspector.html:
- inspector/front-end/networkPanel.css:
- inspector/front-end/scriptsPanel.css:
(#scripts-navigator-resizer-widget):
(.scripts-navigator-domain-tree-item .icon):
(.scripts-navigator-folder-tree-item .icon):
(.scripts-navigator-script-tree-item .icon):
(.scripts.panel .navigator):
(#scripts-navigator-tabbed-pane .tabbed-pane-header):
(#scripts-navigator-tabbed-pane .tabbed-pane-content):
(.scripts.panel .navigator li):
(.scripts.panel .navigator :focus li.selected):
(.scripts.panel .navigator li.selected .selection):
(.scripts.panel .navigator :focus li.selected .selection):
(.scripts.panel .navigator .icon):
(.scripts.panel .base-navigator-tree-element-title):
- inspector/front-end/treeoutline.js:
(TreeOutline):
(TreeOutline.prototype.appendChild):
LayoutTests:
- inspector/debugger/scripts-panel.html:
- inspector/debugger/scripts-sorting.html:
- 4:35 AM Changeset in webkit [102670] by
-
- 6 edits in trunk/Source/WebKit2
[Qt][WK2] Move load & navigation related functions out of QtWebPageProxy
https://bugs.webkit.org/show_bug.cgi?id=74395
Reviewed by Simon Hausmann.
- Target.pri:
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::_q_onVisibleChanged):
(QQuickWebViewPrivate::updateViewportSize):
(QQuickWebViewPrivate::computeViewportConstraints):
(QQuickWebViewPrivate::setUseTraditionalDesktopBehaviour):
(QQuickWebViewPrivate::webPageProxy):
(QQuickWebView::load):
(QQuickWebView::goBack):
(QQuickWebView::goForward):
(QQuickWebView::stop):
(QQuickWebView::reload):
(QQuickWebView::url):
(QQuickWebView::canGoBack):
(QQuickWebView::canGoForward):
(QQuickWebView::loading):
(QQuickWebView::canReload):
(QQuickWebView::title):
(QQuickWebView::loadHtml):
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::didReceiveMessageFromNavigatorQtObject):
- UIProcess/qt/QtWebPageProxy.h:
- 4:03 AM Changeset in webkit [102669] by
-
- 3 edits in trunk/Source/WebCore
CollectionCache: Remove unused copy constructor and make it noncopyable.
<http://webkit.org/b/74378>
Reviewed by Simon Hausmann.
- html/CollectionCache.cpp:
- html/CollectionCache.h:
- 2:37 AM Changeset in webkit [102668] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium test expectations update. Changed expectation of
editing/spelling/grammer-paste.html.
Patch by Kenichi Ishibashi <bashi@chromium.org> on 2011-12-13
- platform/chromium/test_expectations.txt:
- 2:29 AM Changeset in webkit [102667] by
-
- 2 edits in trunk/Source/WebKit2
Unreviewed. Fix GTK+ build after r102640.
- GNUmakefile.am: Add DownloadProxy sources again.
- 2:24 AM Changeset in webkit [102666] by
-
- 8 edits2 moves in trunk/Source/WebKit2
[Qt][WK2] Move undo & edit command PageClient callbacks into QtWebUndoController
https://bugs.webkit.org/show_bug.cgi?id=74364
Reviewed by Simon Hausmann.
The four callbacks in PageClient related to Undo depend only on the QUndoStack. So we
move their handling to a QtWebUndoController (owned by QQuickWebViewPrivate). This also
make QtWebUndoCommand an implementation detail.
- Target.pri:
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::QQuickWebViewPrivate):
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/qt/QtPageClient.cpp:
(QtPageClient::registerEditCommand):
(QtPageClient::clearAllEditCommands):
(QtPageClient::canUndoRedo):
(QtPageClient::executeUndoRedo):
- UIProcess/qt/QtPageClient.h:
(QtPageClient::initialize):
- UIProcess/qt/QtWebPageProxy.cpp:
- UIProcess/qt/QtWebPageProxy.h:
- UIProcess/qt/QtWebUndoController.cpp: Renamed from Source/WebKit2/UIProcess/qt/QtWebUndoCommand.cpp.
(QtWebUndoCommand::inUndoRedo):
(QtWebUndoCommand::QtWebUndoCommand):
(QtWebUndoCommand::~QtWebUndoCommand):
(QtWebUndoCommand::redo):
(QtWebUndoCommand::undo):
(QtWebUndoController::QtWebUndoController):
(QtWebUndoController::registerEditCommand):
(QtWebUndoController::clearAllEditCommands):
(QtWebUndoController::canUndoRedo):
(QtWebUndoController::executeUndoRedo):
- UIProcess/qt/QtWebUndoController.h: Renamed from Source/WebKit2/UIProcess/qt/QtWebUndoCommand.h.
- 2:14 AM Changeset in webkit [102665] by
-
- 3 edits in trunk/Source/WebCore
XHR should use m_responseTypeCode internally to be consistent with WebKit coding style
https://bugs.webkit.org/show_bug.cgi?id=74330
Reviewed by Alexey Proskuryakov.
No new tests needed, no behavioral changes.
- xml/XMLHttpRequest.cpp:
(WebCore::XMLHttpRequest::responseText):
(WebCore::XMLHttpRequest::responseXML):
(WebCore::XMLHttpRequest::responseBlob):
(WebCore::XMLHttpRequest::didReceiveData):
- xml/XMLHttpRequest.h:
(WebCore::XMLHttpRequest::asBlob):
- 2:05 AM Changeset in webkit [102664] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium test expectations update.
Patch by Kenichi Ishibashi <bashi@chromium.org> on 2011-12-13
- platform/chromium/test_expectations.txt:
- 2:04 AM Changeset in webkit [102663] by
-
- 6 edits1 add in trunk/Source/WebCore
Use the [Supplemental] IDL for webaudio attributes in Chromium
https://bugs.webkit.org/show_bug.cgi?id=73394
Reviewed by Adam Barth.
- Overview: Using the [Supplemental] IDL, this patch moves the attribute
declarations of webaudio from DOMWindow.idl into a new IDL file
webaudio/DOMWindowWebAudio.idl, which helps make webaudio a self-contained
feature (aka a module).
- This patch changes the build flow of WebCore.gyp as follows:
Previous build flow:
foreach $idl (all IDL files) {
generate-bindings.pl depends on $idl;
generate-bindings.pl reads $idl;
generate-bindings.pl generates .h and .cpp files for $idl;
}
New build flow (See the discussions in bug 72138 for more details):
resolve-supplemental.pl depends on all IDL files;
resolve-supplemental.pl reads all IDL files;
resolve-supplemental.pl resolves the dependency of [Supplemental=XXXX];
resolve-supplemental.pl outputs supplemental_dependency.tmp;
foreach $idl (all IDL files) {
generate-bindings.pl depends on $idl and supplemental_dependency.tmp;
generate-bindings.pl reads $idl;
generate-bindings.pl reads supplemental_dependency.tmp;
generate-bindings.pl generates .h and .cpp files for $idl, including all attributes in IDL files whilementing $idl;
}
- This patch introduces a temporary IDL, [Supplemented]. The [Supplemented] IDL
will be removed after build scripts for all platforms support the [Supplemental] IDL.
The motivation for the [Supplemented] IDL is as follows:
In order to support the [Supplemental] IDL, we need to
(1) run resolve-supplemental.pl and generate supplemental_dependency.tmp
(2) and run generate-bindings.pl with the supplemental_dependency.tmp.
This build flow requires a change on the following build scripts,
but changing all the build scripts all at once without any regression is too difficult:
- DerivedSources.make
- DerivedSources.pri
- GNUmakefile.am
- PlatformBlackBerry.cmake
- UseJSC.cmake
- UseV8.cmake
- WebCore.vcproj/MigrateScripts
- WebCore.vcproj/WebCore.vcproj
- bindings/gobject/GNUmakefile.am
- WebCore.gyp/WebCore.gyp
Thus, we are planning to change the build scripts one by one, which implies that
we need to allow the temporary state in which some build scripts support [Supplemental] IDL
but others do not. To accomplish this, we introduce a temporary IDL, [Supplemented].
The [Supplemented] IDL on an attribute means that the attribute is marked with [Supplemental]
in another IDL file somewhere, like this:
DOMWindowWebAudio.idl:
interface [
Supplemental=DOMWindow
] DOMWindowWebAudio {
attribute attr1;
attribute attr2;
};
DOMWindow.idl:
interface [
] DOMWindow {
attribute [Supplemented] attr1; This line will be removed after all build scripts support the [Su IDL
attribute [Supplemented] attr2; This line will be removed after all build scripts support the [Su IDL.
attribute attr3;
attribute attr4;
};
Assuming these IDL files, this patch implements the following logic in generate-bindings.pl:
- If a given build script supports the [Supplemental] IDL, generate-bindings.pl ignores all attributes with the [Supplemented] IDL.
- Otherwise, generate-bindings.pl treats all attributes with the [Supplemented] IDL as normal attributes and instead ignores all attributes with the [Supplemental] IDL (i.e. generate-bindings.pl generates nothing from the IDL file with the [Supplemental] IDL).
Tests: webaudio/*
- WebCore.gyp/WebCore.gyp: Describes the build flow that I described above.
- WebCore.gyp/scripts/action_derivedsourcesallinone.py:
(main): Reads the IDL file names from the input file (i.e. supplemental_dependency.tmp),
which are described at the first column of each line in the input file.
If the file name is a "/cygdrive/c/..."-style path, it is converted to a "C:\cygwin\..."-style
path by the cygpath command.
- WebCore.gypi: Added DOMWindowWebAudio.idl.
- bindings/scripts/generate-bindings.pl: As a temporary solution, if the platform does not
support the [Supplemental] IDL, the perl script ignores the [Supplemental] IDL and instead
uses the [Supplemented] IDL. Otherwise, the perl script ignores the [Supplemented] IDL and
instead uses the [Supplemental] IDL.
Added the --additionalIdlFilesList option to specify the IDL files that are not listed in
supplemental-dependency.tmp but should generate .h and .cpp files.
- page/DOMWindow.idl: Added the [Supplemented] IDL to webaudio-related attributes.
As I described above, the [Supplemented] IDL will be removed after all platforms support
the [Supplemental] IDL.
- webaudio/DOMWindowWebAudio.idl: Added. Describes the [Supplemental=DOMWindow] IDL.
The attributes in this IDL file should be treated as if they are written in DOMWindow.idl.
- 1:33 AM Changeset in webkit [102662] by
-
- 5 edits2 adds in trunk/LayoutTests
Asynchronous text checking should check the grammar.
https://bugs.webkit.org/show_bug.cgi?id=56368
Patch by Shinya Kawanaka <shinyak@google.com> on 2011-12-13
Reviewed by Hajime Morita.
From r102553, we had capability of grammar checking for asynchronous text checking.
This patch adds a test for it.
- editing/spelling/grammar-paste-expected.txt: Added.
- editing/spelling/grammar-paste.html: Added.
- platform/chromium/test_expectations.txt:
- platform/gtk/Skipped:
- platform/mac-leopard/Skipped:
- platform/qt/Skipped:
- 12:17 AM Changeset in webkit [102661] by
-
- 2 edits in trunk/Tools
Reviewed, removed one of my email addresses to use the apprpriate one.
Patch by Kenichi Ishibashi <bashi@chromium.org> on 2011-12-13
- Scripts/webkitpy/common/config/committers.py:
- 12:17 AM Changeset in webkit [102660] by
-
- 3 edits in trunk/Source/WebCore
RenderTheme should have a function for disabled text color adjustment
https://bugs.webkit.org/show_bug.cgi?id=74143
Change disabledTextColor to private method.
Patch by Yosifumi Inoue <yosin@chromium.org> on 2011-12-13
Reviewed by Kent Tamura.
No new tests / existing tests cover this change.
- rendering/RenderThemeChromiumMac.h: Change disabledTextColor to private.
- rendering/RenderThemeChromiumSkia.h: Change disabledTextColor to private.
- 12:02 AM Changeset in webkit [102659] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium test expectations update.
Clean out passing tests from test_expectations.txt.
Patch by Kenichi Ishibashi <bashi@chromium.org> on 2011-12-12
- platform/chromium/test_expectations.txt:
Dec 12, 2011:
- 10:37 PM Changeset in webkit [102658] by
-
- 7 edits in branches/chromium/963
Merge 101998 - "Raw" pseudo selectors don't match if immediately after a child or descendant combinator
https://bugs.webkit.org/show_bug.cgi?id=72933
Source/WebCore:
Remove shortcut that prevents universal selectors from being created before shadow pseudo-elements.
Reviewed by Antti Koivisto.
- css/CSSParser.cpp:
(WebCore::CSSParser::updateSpecifiersWithElementName):
LayoutTests:
Add tests cases for "raw" shadow pseudo-element selectors with various combinators.
Also add cases with explicit universal '*' selector.
Reviewed by Antti Koivisto.
- fast/css/css-selector-text-expected.txt:
- fast/css/css-selector-text.html:
- fast/css/css-set-selector-text-expected.txt:
- fast/css/css-set-selector-text.html:
- fast/css/unknown-pseudo-element-matching-expected.txt:
- fast/css/unknown-pseudo-element-matching.html:
TBR=rolandsteiner@chromium.org
BUG=97744
Review URL: http://codereview.chromium.org/8931002
- 9:11 PM Changeset in webkit [102657] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed, rolling out r102656.
http://trac.webkit.org/changeset/102656
https://bugs.webkit.org/show_bug.cgi?id=74313
Broke the Mac, Windows and WinCairo builds. We need to look
into this patch some more.
- bindings/js/ScriptEventListener.cpp:
(WebCore::eventListenerHandlerLocation):
- 8:07 PM Changeset in webkit [102656] by
-
- 2 edits in trunk/Source/WebCore
Implement the JavaScriptCore bindings for eventListenerHandlerLocation
https://bugs.webkit.org/show_bug.cgi?id=74313
Patch by Konrad Piascik <kpiascik@rim.com> on 2011-12-12
Reviewed by Geoffrey Garen.
Open any page in Web Inspector and look at the event listeners. They should now
link to the script which created them.
- bindings/js/ScriptEventListener.cpp:
(WebCore::eventListenerHandlerLocation):
- 7:48 PM Changeset in webkit [102655] by
-
- 6 edits in trunk/Source/WebCore
RenderTheme should have a function for disabled text color adjustment
https://bugs.webkit.org/show_bug.cgi?id=74143
Patch by Yosifumi Inoue <yosin@chromium.org> on 2011-12-12
Reviewed by Kent Tamura.
No new tests / existing tests cover this change.
- rendering/RenderTextControl.cpp:
(WebCore::RenderTextControl::adjustInnerTextStyle): Use RenderTheme::disabledTextColor instead of PLATFORM wraped static function.
- rendering/RenderTheme.cpp:
(WebCore::RenderTheme::disabledTextColor): Moved from RenderTextControl.cpp. This method implements for non-Chromium color.
- rendering/RenderTheme.h: Add new virtual method disabledTextColor.
- rendering/RenderThemeChromiumMac.h: Implementation of RenderTheme::disabledTextColor for Chrimium Mac.
- rendering/RenderThemeChromiumSkia.h: Implementation of RenderTheme::disabledTextColor for Chrimium.
- 7:28 PM Changeset in webkit [102654] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium test expectations update. Actually skip
plugins/netscape-plugin-page-cache-works.html as it looks like its
timeout is causing other tests to fail.
- platform/chromium/test_expectations.txt:
- 7:13 PM Changeset in webkit [102653] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed, rolling out r102648.
http://trac.webkit.org/changeset/102648
https://bugs.webkit.org/show_bug.cgi?id=74313
Broke the Snow Leopard and Windows builds
- bindings/js/ScriptEventListener.cpp:
(WebCore::eventListenerHandlerLocation):
- 7:08 PM Changeset in webkit [102652] by
-
- 13 edits in trunk/Source
Resizing Cappuccino is very laggy on WebKit since Safari 5.1
<http://webkit.org/b/71354> and <rdar://problem/10565998>
Reviewed by Anders Carlsson.
Source/WebCore:
- WebCore.exp.in: Export FloatPoint(const NSPoint&)
Source/WebKit2:
On Mac, we already cache the window rect through the WindowAndViewFramesChanged
message, so simply return that in WebChromeClient::windowRect() instead of
sending a synchronous query to the UIProcess.
Changed WindowAndViewFramesChanged to pass FloatRect/FloatPoint rather than
IntRect/IntPoint to match the ChromeClient::windowRect() return type.
- UIProcess/API/mac/WKView.mm:
(-[WKView _updateWindowAndViewFrames]):
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::setWindowFrame):
- UIProcess/WebPageProxy.h:
- UIProcess/mac/WebPageProxyMac.mm:
(WebKit::WebPageProxy::windowAndViewFramesChanged):
- WebProcess/Plugins/PluginView.cpp:
(WebKit::PluginView::windowAndViewFramesChanged):
- WebProcess/Plugins/PluginView.h:
- WebProcess/WebCoreSupport/WebChromeClient.cpp:
(WebKit::WebChromeClient::windowRect):
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::windowAndViewFramesChanged):
- WebProcess/WebPage/WebPage.h:
(WebKit::WebPage::windowFrameInScreenCoordinates):
(WebKit::WebPage::viewFrameInWindowCoordinates):
(WebKit::WebPage::accessibilityPosition):
- WebProcess/WebPage/mac/WKAccessibilityWebPageObject.mm:
(-[WKAccessibilityWebPageObject accessibilityAttributeValue:]):
- 6:56 PM Changeset in webkit [102651] by
-
- 2 edits in trunk/Source/WebCore
[Qt] QTKIT-based video support must target OS X 10.5 or higher
https://bugs.webkit.org/show_bug.cgi?id=74294
WebCore on OS X Lion fails to build when QTKIT video support is enabled, unless a
deployment target of 10.5+ is specified explicitly.
Reviewed by Noam Rosenthal.
No new tests as this is a build issue.
- Target.pri:
- 6:36 PM Changeset in webkit [102650] by
-
- 3 edits in trunk/Source/WebCore
Implement CSS text-decoration property in CSSStyleApplyProperty.
https://bugs.webkit.org/show_bug.cgi?id=74258
Reviewed by Andreas Kling.
No new tests / refactoring only.
- css/CSSStyleApplyProperty.cpp:
(WebCore::ApplyPropertyTextDecoration::applyValue):
(WebCore::ApplyPropertyTextDecoration::createHandler):
(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
- 6:32 PM Changeset in webkit [102649] by
-
- 3 edits6 adds in trunk
iframe fails to scroll in composited page
https://bugs.webkit.org/show_bug.cgi?id=72682
Reviewed by Simon Fraser.
Source/WebCore:
FrameView::scrollContentsSlowPath only was catching the case where a
child iframe had a composited parent. Now detect if the child iframe
has any composited ancestor.
Test: compositing/iframes/scroll-grandchild-iframe.html
- page/FrameView.cpp:
(WebCore::FrameView::scrollContentsSlowPath):
LayoutTests:
- compositing/iframes/resources/scrollgrandchild-grandparent.html: Added.
- compositing/iframes/resources/scrollgrandchild-inner.html: Added.
- compositing/iframes/resources/scrollgrandchild-parent.html: Added.
- compositing/iframes/scroll-grandchild-iframe-expected.png: Added.
- compositing/iframes/scroll-grandchild-iframe-expected.txt: Added.
- compositing/iframes/scroll-grandchild-iframe.html: Added.
- 6:23 PM Changeset in webkit [102648] by
-
- 2 edits in trunk/Source/WebCore
Implement the JavaScriptCore bindings for eventListenerHandlerLocation
https://bugs.webkit.org/show_bug.cgi?id=74313
Patch by Konrad Piascik <kpiascik@rim.com> on 2011-12-12
Reviewed by Geoffrey Garen.
Open any page in Web Inspector and look at the event listeners. They should now
link to the script which created them.
- bindings/js/ScriptEventListener.cpp:
(WebCore::eventListenerHandlerLocation):
- 5:45 PM Changeset in webkit [102647] by
-
- 2 edits in trunk/LayoutTests
Unreviewed. Chromium test expectations update to get the bots green.
- platform/chromium/test_expectations.txt:
- 5:34 PM Changeset in webkit [102646] by
-
- 6 edits2 deletes in trunk/Source/WebCore
[V8] CodeGeneratorV8.pm does not correctly work with inherited HasIndexGetter
https://bugs.webkit.org/show_bug.cgi?id=74027
Reviewed by Adam Barth.
Instead of having to write a custom indexer when the interface has an inherited indexer
we get the signature from the super interface.
Tested by existing tests.
- Target.pri: Remove V8DOMSettableTokenListCustom.cpp and V8WebKitCSSFilterValueCustom.cpp.
- UseV8.cmake: Ditto.
- WebCore.gypi: Ditto.
- bindings/scripts/CodeGenerator.pm:
(FindSuperMethod): Returns the first matching function in one of the ancestor interfaces.
- bindings/scripts/CodeGeneratorV8.pm:
(GenerateImplementationIndexer): If the current interface has no indexer try to find an
indexer in one of the super interfaces.
(GenerateImplementationNamedPropertyGetter): Ditto for named property getter.
- bindings/v8/custom/V8DOMSettableTokenListCustom.cpp: Removed.
- bindings/v8/custom/V8WebKitCSSFilterValueCustom.cpp: Removed.
- 5:14 PM Changeset in webkit [102645] by
-
- 4 edits in trunk/LayoutTests
Mac rebaselines after r102612 and r102538.
- platform/mac-snowleopard/fast/text/hyphenate-limit-lines-expected.txt:
- platform/mac/fast/dom/Window/window-properties-expected.txt:
- platform/mac/fast/dom/Window/window-property-descriptors-expected.txt:
- 5:05 PM Changeset in webkit [102644] by
-
- 12 edits2 copies in trunk/Source/WebCore
Make it possible to substitute a different CALayer implementation for the main root layer
https://bugs.webkit.org/show_bug.cgi?id=74369
Reviewed by Anders Carlsson.
Some platforms may wish to have the main root layer (which corresponds with
the main frame's RenderView's layer) implemented by a custom platform layer,
for example to contain a cache of tiles.
Make this possible on Mac by adding a new method to GraphicsLayerClient(),
and implementing it in RenderLayerBacking. This new behavior is not yet enabled.
Also clean up some WebLayer/WebTiledLayer code.
- WebCore.xcodeproj/project.pbxproj:
- platform/graphics/GraphicsLayerClient.h:
(WebCore::GraphicsLayerClient::shouldUseTileCache): New client method that indicates that the GraphicsLayer
should host a tile cache layer instead of a normal layer.
- platform/graphics/ca/GraphicsLayerCA.cpp:
(WebCore::GraphicsLayerCA::GraphicsLayerCA): Ask the client, if any, whether to create a tile cache layer.
- platform/graphics/ca/PlatformCALayer.h:
- platform/graphics/ca/mac/PlatformCALayerMac.mm: NSClassFromString(@"CATransformLayer") was for Leopard;
we can just use the classname now. Handle LayerTypeTileCacheLayer.
(PlatformCALayer::PlatformCALayer):
- platform/graphics/ca/mac/WebTileCacheLayer.h: Copied from Source/WebCore/platform/graphics/mac/WebLayer.h.
- platform/graphics/ca/mac/WebTileCacheLayer.mm: Copied from Source/WebCore/platform/graphics/mac/WebLayer.h.
- platform/graphics/mac/WebLayer.h: Remove the setLayerNeedsDisplayInRect() hackery.
- platform/graphics/mac/WebLayer.mm: setLayerNeedsDisplayInRect() tried to share code between WebLayer and WebTiledLayer
by using Obj-C runtime methods to find the superclass. This causes infinite recursion if Web[Tiled]Layer is subclassed,
so remove it.
(-[WebLayer setNeedsDisplayInRect:]): Code moved here from setLayerNeedsDisplayInRect.
- platform/graphics/mac/WebTiledLayer.mm:
(-[WebTiledLayer setNeedsDisplayInRect:]): Code copied here from setLayerNeedsDisplayInRect.
- rendering/RenderLayerBacking.cpp:
(WebCore::RenderLayerBacking::RenderLayerBacking): Find out, and cache if we're the main frame's layer.
(WebCore::RenderLayerBacking::shouldUseTileCache): Return m_usingTiledCacheLayer, which is always false for now.
(WebCore::RenderLayerBacking::createPrimaryGraphicsLayer): Use m_isMainFrameRenderViewLayer.
(WebCore::RenderLayerBacking::paintingGoesToWindow): The tile cache layer needs to paint itself.
- rendering/RenderLayerBacking.h:
- rendering/RenderLayerCompositor.h: m_compositeForFixedPosition was unused.
- 4:59 PM Changeset in webkit [102643] by
-
- 7 edits in trunk/Source/WebCore
REGRESSION(r102357): respondToUnappliedEditing exits early for CreateLinkCommand
https://bugs.webkit.org/show_bug.cgi?id=74356
Reviewed by Enrica Casucci.
The problem was that isCreateLinkCommand was called on EditCommandComposition by respondToUnappliedEditing.
Fixed the bug by propagating the value of isCreteLinkCommand from CompositeEditCommand to
EditCommandComposition via wasCreateLinkCommand.
Also move isCreateLinkCommand from EditCommand to CompositeEditCommand to prevent this mistake in the future.
- editing/CompositeEditCommand.cpp:
(WebCore::EditCommandComposition::create):
(WebCore::EditCommandComposition::EditCommandComposition):
(WebCore::CompositeEditCommand::ensureComposition):
(WebCore::CompositeEditCommand::isCreateLinkCommand):
- editing/CompositeEditCommand.h:
(WebCore::EditCommandComposition::wasCreateLinkCommand):
- editing/SpellingCorrectionController.cpp:
(WebCore::SpellingCorrectionController::respondToUnappliedEditing):
- editing/SpellingCorrectionController.h:
- 4:58 PM Changeset in webkit [102642] by
-
- 5 edits in branches/safari-534.53-branch/Source
Versioning.
- 4:56 PM Changeset in webkit [102641] by
-
- 4 edits in trunk
[CSSRegions]Revert RenderObject::style() to its state before region styling
https://bugs.webkit.org/show_bug.cgi?id=74315
Patch by Mihnea Ovidenie <mihnea@adobe.com> on 2011-12-12
Reviewed by Tony Chang.
Source/WebCore:
- rendering/RenderObject.h:
(WebCore::RenderObject::style):
LayoutTests:
- platform/mac-snowleopard/Skipped:
- 4:52 PM Changeset in webkit [102640] by
-
- 12 edits1 copy2 adds in trunk/Source/WebKit2
Add EventDispatcher class to WebKit2
https://bugs.webkit.org/show_bug.cgi?id=74344
Patch by Anders Carlsson <andersca@apple.com> on 2011-12-12
Reviewed by Sam Weinig.
The EventDispatcher is a singleton which will be in charge of dispatching events to WebPage objects.
- DerivedSources.make:
- DerivedSources.pri:
- GNUmakefile.am:
- Target.pri:
- WebKit2.xcodeproj/project.pbxproj:
- win/WebKit2.vcproj:
Add new files.
- Platform/CoreIPC/MessageID.h:
Add EventDispatcher.
- WebProcess/WebConnectionToUIProcess.cpp:
(WebKit::WebConnectionToUIProcess::WebConnectionToUIProcess):
(WebKit::WebConnectionToUIProcess::invalidate):
- WebProcess/WebConnectionToUIProcess.h:
WebConnectionToUIProcess doesn't need to be a QueueClient. Also, move the call to open into WebProcess since
we don't want to add queue clients after the connection has been opened.
- WebProcess/WebPage/EventDispatcher.cpp: Added.
(WebKit::EventDispatcher::EventDispatcher):
(WebKit::EventDispatcher::~EventDispatcher):
(WebKit::EventDispatcher::didReceiveMessageOnConnectionWorkQueue):
(WebKit::EventDispatcher::wheelEvent):
- WebProcess/WebPage/EventDispatcher.h:
- WebProcess/WebPage/EventDispatcher.messages.in: Added.
Add new stub files.
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::initialize):
Add the event dispatcher as a queue client.
- WebProcess/WebProcess.h:
Add an EventDispatcher member variable to the web process.
- 4:48 PM Changeset in webkit [102639] by
-
- 3 edits2 adds in trunk
Don't crash in StyleAttributeMutationScope if the style declaration's element has been GCed
https://bugs.webkit.org/show_bug.cgi?id=74321
Reviewed by Ryosuke Niwa.
Source/WebCore:
In r101101, Rafael Weinstein added code to CSSMutableStyleDeclaration.cpp
which depended on isInlineStyleDeclaration returning true iff the
element it pointed to was non-null (it will be nulled-out if the
element is garbage collected).
Then, in r101172, Andreas Kling changed the semantics so that
isInlineStyleDeclaration only described the type of the declaration,
not the state of the related element.
This change updates Rafael's code with an explicit check that the
element is still alive.
Test: fast/dom/css-inline-style-declaration-crash.html
- css/CSSMutableStyleDeclaration.cpp:
LayoutTests:
- fast/dom/css-inline-style-declaration-crash-expected.txt: Added.
- fast/dom/css-inline-style-declaration-crash.html: Added.
- 4:46 PM Changeset in webkit [102638] by
-
- 1 copy in tags/Safari-534.53.9
New tag.
- 4:14 PM Changeset in webkit [102637] by
-
- 5 edits in trunk/Source
Versioning.
- 4:10 PM Changeset in webkit [102636] by
-
- 1 copy in tags/Safari-535.13
New Tag.
- 4:09 PM Changeset in webkit [102635] by
-
- 2 edits in trunk/LayoutTests
[WinCairo] Unreviewed update to Skipped list to get bot green.
- platform/wincairo/Skipped: Exclude current failures (and turn on a few new successes).
- 3:54 PM Changeset in webkit [102634] by
-
- 6 edits2 adds in trunk
AX: aria-hidden inheritance broken when applying to some descendants
https://bugs.webkit.org/show_bug.cgi?id=73940
Reviewed by Darin Adler.
Source/WebCore:
When adding children, we were not updating the children cache for direct AX descendants.
This meant that toggling aria-hidden could result in a stale cache where elements would not be reachable.
Making this fix also exposed a problem in AccessibilityTable where the AccessibilityHeaderObject was not
being managed correctly as a mock element.
Test: platform/mac/accessibility/aria-hidden-changes-for-non-ignored-elements.html
- accessibility/AccessibilityRenderObject.cpp:
(WebCore::AccessibilityRenderObject::addChildren):
- accessibility/AccessibilityTable.cpp:
(WebCore::AccessibilityTable::clearChildren):
(WebCore::AccessibilityTable::headerContainer):
- accessibility/AccessibilityTable.h:
LayoutTests:
- platform/mac/accessibility/aria-hidden-changes-for-non-ignored-elements-expected.txt: Added.
- platform/mac/accessibility/aria-hidden-changes-for-non-ignored-elements.html: Added.
- 3:51 PM Changeset in webkit [102633] by
-
- 10 edits in trunk/Source/WebKit2
Prefix internal methods in Objective-C API files with an underscore
https://bugs.webkit.org/show_bug.cgi?id=74363
Reviewed by Dan Bernstein.
- UIProcess/API/mac/WKBrowsingContextController.mm:
(-[WKBrowsingContextController _pageRef]):
(-[WKBrowsingContextController loadRequest:]):
(-[WKBrowsingContextController loadFileURL:restrictToFilesWithin:]):
(-[WKBrowsingContextController stopLoading]):
(-[WKBrowsingContextController reload]):
(-[WKBrowsingContextController reloadFromOrigin]):
(-[WKBrowsingContextController goForward]):
(-[WKBrowsingContextController canGoForward]):
(-[WKBrowsingContextController goBack]):
(-[WKBrowsingContextController canGoBack]):
(-[WKBrowsingContextController activeURL]):
(-[WKBrowsingContextController provisionalURL]):
(-[WKBrowsingContextController committedURL]):
(-[WKBrowsingContextController title]):
(-[WKBrowsingContextController textZoom]):
(-[WKBrowsingContextController setTextZoom:]):
(-[WKBrowsingContextController pageZoom]):
(-[WKBrowsingContextController setPageZoom:]):
(-[WKBrowsingContextController setPaginationMode:]):
(-[WKBrowsingContextController paginationMode]):
(-[WKBrowsingContextController setPageLength:]):
(-[WKBrowsingContextController pageLength]):
(-[WKBrowsingContextController setGapBetweenPages:]):
(-[WKBrowsingContextController gapBetweenPages]):
(-[WKBrowsingContextController pageCount]):
(-[WKBrowsingContextController _initWithPageRef:]):
- UIProcess/API/mac/WKBrowsingContextControllerInternal.h:
- UIProcess/API/mac/WKBrowsingContextGroup.mm:
(-[WKBrowsingContextGroup allowsJavaScript]):
(-[WKBrowsingContextGroup setAllowsJavaScript:]):
(-[WKBrowsingContextGroup allowsPlugIns]):
(-[WKBrowsingContextGroup setAllowsPlugIns:]):
(-[WKBrowsingContextGroup _pageGroupRef]):
- UIProcess/API/mac/WKBrowsingContextGroupInternal.h:
- UIProcess/API/mac/WKConnection.mm:
(-[WKConnection _initWithConnectionRef:]):
- UIProcess/API/mac/WKConnectionInternal.h:
- UIProcess/API/mac/WKProcessGroup.mm:
(didCreateConnection):
(-[WKProcessGroup _contextRef]):
- UIProcess/API/mac/WKProcessGroupInternal.h:
- UIProcess/API/mac/WKView.mm:
(-[WKView initWithFrame:processGroup:browsingContextGroup:]):
(-[WKView browsingContextController]):
- 3:51 PM Changeset in webkit [102632] by
-
- 4 edits1 move1 add1 delete in trunk
When the mouse is dragged out of an :active element, it should lose :hover.
https://bugs.webkit.org/show_bug.cgi?id=57206
Patch by Jeremy Apthorp <jeremya@chromium.org> on 2011-12-12
Reviewed by Ryosuke Niwa.
Source/WebCore:
Test: fast/css/hover-active-drag.html
- page/EventHandler.cpp:
(WebCore::EventHandler::handleMouseMoveEvent): Don't mark mouse-drag hit tests read-only, since they no longer are.
(WebCore::EventHandler::dragSourceEndedAt): Send a hit test request when the mouse goes up after a drag, so
RenderLayer has a chance to update the hover/active status.
- rendering/RenderLayer.cpp:
(WebCore::RenderLayer::updateHoverActiveState): Only allow the :active state to change on mouse down or mouse up.
LayoutTests:
- fast/css/hover-active-drag-expected.txt: Added.
- fast/css/hover-active-drag.html: Added.
- platform/mac/fast/css/hover-active-drag-expected.txt: Removed.
- platform/chromium/fast/css/hover-active-drag-expected.txt: Removed.
- 3:21 PM Changeset in webkit [102631] by
-
- 5 edits in trunk/Source/JavaScriptCore
Eliminate Duplicate word at a time equal code in StringImpl.cpp and StringHash.h
https://bugs.webkit.org/show_bug.cgi?id=73622
Reviewed by Oliver Hunt.
Moved equal(charType1 *, charType2, unsigned) template methods
from static StringImpl.cpp to StringImpl.h and then replaced the
processor specific character comparison code in StringHash::equal
with calls to these methods.
This change is worth 3% on SunSpider string-unpack-code as reported
by the SunSpider command line harness. No other tests appear to
have measurable performance changes.
- wtf/text/AtomicString.h:
(WTF::operator==):
- wtf/text/StringHash.h:
(WTF::StringHash::equal):
- wtf/text/StringImpl.cpp:
- wtf/text/StringImpl.h:
(WTF::LChar):
(WTF::UChar):
(WTF::equal):
- 3:17 PM Changeset in webkit [102630] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium expectations update; skip
plugins/netscape-plugin-page-cache-works.html.
- platform/chromium/test_expectations.txt:
- 3:08 PM Changeset in webkit [102629] by
-
- 2 edits in trunk/Source/JavaScriptCore
ARMv7 version of DFG soft modulo does register allocation inside of control flow
https://bugs.webkit.org/show_bug.cgi?id=74354
Reviewed by Gavin Barraclough.
- dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::SpeculativeJIT::compileSoftModulo):
- 3:05 PM Changeset in webkit [102628] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed Windows build fix after http://trac.webkit.org/changeset/102619 .
Remove OVERRIDE specifier from virtual destructor.
- html/HTMLPlugInImageElement.h:
- 2:53 PM Changeset in webkit [102627] by
-
- 13 edits in trunk/Source
WebKit code shouldn't be calling applyCommand directly
https://bugs.webkit.org/show_bug.cgi?id=74337
Reviewed by Darin Adler.
Source/WebCore:
Make WebKit-layer code call Editor::replaceSelectionWithFragment and Editor::replaceSelectionWithText
instead of manually creating and applying ReplaceSelectionCommand.
The only behavioral difference is that new code will end up checking for spell checks. However, this
difference appears to be unintentional since the code predates http://trac.webkit.org/changeset/73886,
which introduced an invocation of spellcheck code.
Unfortunately no tests since there doesn't seem to be anyway to test this change.
- WebCore.exp.in:
- editing/EditCommand.cpp:
(WebCore::applyCommand):
- editing/EditCommand.h:
- editing/Editor.h:
Source/WebKit/chromium:
- src/WebFrameImpl.cpp:
(WebKit::WebFrameImpl::replaceSelection):
Source/WebKit/gtk:
- webkit/webkitwebframe.cpp:
(webkit_web_frame_replace_selection):
Source/WebKit/mac:
- WebView/WebFrame.mm:
(-[WebFrame _replaceSelectionWithFragment:selectReplacement:smartReplace:matchStyle:]):
Source/WebKit2:
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::replaceSelectionWithText):
- 2:49 PM Changeset in webkit [102626] by
-
- 12 edits in trunk/LayoutTests
Update html5lib test data to latest version
https://bugs.webkit.org/show_bug.cgi?id=74343
Reviewed by Eric Seidel.
This patch imports the latest version of the "dat" files from
http://code.google.com/p/html5lib/
- html5lib/resources/pending-spec-changes.dat:
- html5lib/resources/plain-text-unsafe.dat:
- html5lib/resources/tables01.dat:
- html5lib/resources/tests16.dat:
- html5lib/resources/tests19.dat:
- html5lib/resources/tests26.dat:
- html5lib/resources/tests_innerHTML_1.dat:
- html5lib/resources/webkit01.dat:
- html5lib/runner-expected.txt:
- html5lib/webkit-resumer-expected.txt:
- platform/chromium/html5lib/runner-expected.txt:
- 2:41 PM Changeset in webkit [102625] by
-
- 2 edits in trunk/Source/WebKit2
Remove unused getter on WKConnection.
Reviewed by Dan Bernstein.
- UIProcess/API/mac/WKConnection.mm:
- 2:33 PM Changeset in webkit [102624] by
-
- 4 edits in trunk
Simplify autotools configure.ac
https://bugs.webkit.org/show_bug.cgi?id=74312
Patch by Andy Wingo <wingo@igalia.com> on 2011-12-12
Reviewed by Martin Robinson.
.:
- configure.ac: Don't AC_DEFINE so many things. Many of the
defines were stale (ENABLE_YARR, ENABLE_JIT_OPTIMIZE_CALL, etc),
and with Platform.h we don't need to make an explicit decision
here. If the user does pass --enable-jit or --disable-jit, effect
that choice via setting JSC_CPPFLAGS.
Source/JavaScriptCore:
- GNUmakefile.am: Add JSC_CPPFLAGS to javascriptcore_cppflags.
- 2:13 PM Changeset in webkit [102623] by
-
- 3 edits3 adds in trunk
DFG GetByVal CSE incorrectly assumes that a non-matching PutByVal cannot clobber
https://bugs.webkit.org/show_bug.cgi?id=74329
Reviewed by Gavin Barraclough.
Source/JavaScriptCore:
- dfg/DFGPropagator.cpp:
(JSC::DFG::Propagator::getByValLoadElimination):
LayoutTests:
- fast/js/dfg-get-by-val-clobber-expected.txt: Added.
- fast/js/dfg-get-by-val-clobber.html: Added.
- fast/js/script-tests/dfg-get-by-val-clobber.js: Added.
(doAccesses):
- 2:13 PM Changeset in webkit [102622] by
-
- 5 edits1 delete in trunk/Source/WebCore
Remove platform/audio/fftw
https://bugs.webkit.org/show_bug.cgi?id=73163
Reviewed by Eric Seidel.
The FFTW library is GPL, not LGPL, like WebKit. This patch removes the
integration with the library so folks who use WebAudio don't
accidentially violate the GPL by linking in FFTW.
- GNUmakefile.am:
- WebCore.gyp/WebCore.gyp:
- WebCore.gypi:
- platform/audio/FFTFrame.h:
- platform/audio/FFTFrameStub.cpp:
- platform/audio/fftw: Removed.
- platform/audio/fftw/FFTFrameFFTW.cpp: Removed.
- 2:09 PM Changeset in webkit [102621] by
-
- 2 edits in trunk/Source/WebCore
COMPILE_ASSERT in CSSStyleSelector.cpp doesn't compile on Windows
https://bugs.webkit.org/show_bug.cgi?id=74327
Unreviewed build fix. True fix should follow under above bug.
- css/CSSStyleSelector.cpp:
- 2:04 PM Changeset in webkit [102620] by
-
- 7 edits in trunk/Source
Fix compilation error when !ENABLE(WORKERS)
https://bugs.webkit.org/show_bug.cgi?id=74029
Reviewed by Yury Semikhatsky.
Source/WebCore:
- storage/IDBFactory.cpp:
(WebCore::IDBFactory::open): add #if ENABLE(WORKERS) guard
Source/WebKit/chromium:
- features.gypi:
- src/IDBFactoryBackendProxy.cpp:
(WebKit::IDBFactoryBackendProxy::openFromWorker):
- src/PlatformSupport.cpp:
- src/WebDevToolsAgentImpl.cpp:
(WebKit::WebDevToolsAgent::disconnectEventAsText):
- src/WebWorkerRunLoop.cpp:
- 2:00 PM Changeset in webkit [102619] by
-
- 20 edits3 adds in trunk
Page cache should support pages with plugins.
<rdar://problem/5190122> and https://bugs.webkit.org/show_bug.cgi?id=13634
Source/WebCore:
Reviewed by Anders Carlsson.
By making plugin elements renderers go display:none when entering the page cache,
we destroy the plug-in in a cross platform way as well as handle invalidating script
objects created by that plugin.
By restoring the original style when leaving the page cache and forcing a style recalc
on the plugin element, the plugin is gracefully reinstantiated when the user goes back.
Test: plugins/netscape-plugin-page-cache-works.html
- dom/Document.cpp:
(WebCore::Document::documentDidBecomeActive): Copy this collection before iterating over
it, as the callbacks might result in mutating the set.
- dom/Node.h:
(WebCore::Node::setHasCustomStyleForRenderer):
(WebCore::Node::clearHasCustomStyleForRenderer): Expose the ability to stop using a
custom renderer and go back to the default renderer.
- history/CachedFrame.cpp:
(WebCore::CachedFrame::CachedFrame): Move the document inactivation call to the same place
we suspend active DOM objects. It is important this call be *after* the beforeunload event
is dispatched, and was coincidental non of the elements that using Document activation
had run in to this problem yet.
- history/PageCache.cpp:
(WebCore::logCanCacheFrameDecision):
(WebCore::PageCache::canCachePageContainingThisFrame): If the page contains plugins but
the PageCacheSupportsPlugins setting is true, allow this page.
Kill and recreate the plugin by listening for Document activation callbacks and setting a custom
display:none render style:
- html/HTMLPlugInImageElement.cpp:
(WebCore::HTMLPlugInImageElement::HTMLPlugInImageElement):
(WebCore::HTMLPlugInImageElement::~HTMLPlugInImageElement): Unregister for document activation
callbacks.
(WebCore::HTMLPlugInImageElement::createRenderer): Once a renderer (ie. plugin instance) is
created, this element needs Document (in)activation callbacks.
(WebCore::HTMLPlugInImageElement::willMoveToNewOwnerDocument): Manage Document activation
callback registration.
(WebCore::HTMLPlugInImageElement::didMoveToNewOwnerDocument): Ditto.
(WebCore::HTMLPlugInImageElement::documentWillBecomeInactive): Clone the element's current style
and set the clone's display value to None. Start using this custom style and force a style
recall. This destroys the renderer and therefore the plugin instance.
(WebCore::HTMLPlugInImageElement::documentDidBecomeActive): Stop using the custom style and
force a style recall to reinstantiate the plugin.
(WebCore::HTMLPlugInImageElement::customStyleForRenderer): Return the stand-in style that has
display:none set.
- html/HTMLPlugInImageElement.h:
Add a setting that allows runtime configuration of whether or not the page cache supports plugins:
- page/Settings.cpp:
(WebCore::Settings::Settings):
- page/Settings.h:
(WebCore::Settings::setPageCacheSupportsPlugins):
(WebCore::Settings::pageCacheSupportsPlugins):
Source/WebKit/mac:
Expose a WebKit preference for the page cache supporting plugins (on by default).
Reviewed by Anders Carlsson.
- WebView/WebPreferenceKeysPrivate.h:
- WebView/WebPreferences.mm:
(-[WebPreferences pageCacheSupportsPlugins]):
(-[WebPreferences setPageCacheSupportsPlugins:]):
- WebView/WebPreferencesPrivate.h:
- WebView/WebView.mm:
(-[WebView _preferencesChanged:]):
Source/WebKit2:
Expose a WebKit2 preference for the page cache supporting plugins (on by default).
Reviewed by Anders Carlsson.
- Shared/WebPreferencesStore.h:
- UIProcess/API/C/WKPreferences.cpp:
(WKPreferencesSetPageCacheSupportsPlugins):
(WKPreferencesGetPageCacheSupportsPlugins):
- UIProcess/API/C/WKPreferencesPrivate.h:
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::updatePreferences):
LayoutTests:
Reviewed by Anders Carlsson.
- plugins/netscape-plugin-page-cache-works-expected.txt: Added.
- plugins/netscape-plugin-page-cache-works.html: Added.
- plugins/resources/go-back.html: Added.
- 1:56 PM Changeset in webkit [102618] by
-
- 2 edits in branches/safari-534.53-branch/Source/WebKit/mac
<rdar://problem/10565832> After installing Duches 53.8, Mail Hangs on Reply all
Fixing a mis-merge of r99617 where an observer was incorrectly added.
- WebView/WebView.mm:
(-[WebView addWindowObserversForWindow:]):
- 1:41 PM Changeset in webkit [102617] by
-
- 3 edits in branches/safari-534.53-branch/Source/WebKit/mac
Merge 97407.
- 1:41 PM Changeset in webkit [102616] by
-
- 5 edits3 adds in trunk/Source/WebKit2
Add WKConnection objective-c wrapper around WKConnectionRef
<rdar://problem/10446092>
https://bugs.webkit.org/show_bug.cgi?id=74324
Reviewed by Anders Carlsson.
- UIProcess/API/mac/WKConnection.h: Added.
- UIProcess/API/mac/WKConnection.mm: Added.
(-[WKConnection dealloc]):
(-[WKConnection connectionRef]):
(-[WKConnection delegate]):
(-[WKConnection setDelegate:]):
(didReceiveMessage):
(didClose):
(setUpClient):
(-[WKConnection initWithConnectionRef:]):
- UIProcess/API/mac/WKConnectionInternal.h: Added.
Added new class.
- UIProcess/API/mac/WKProcessGroup.h:
- UIProcess/API/mac/WKProcessGroup.mm:
(didCreateConnection):
(setUpConnectionClient):
(-[WKProcessGroup initWithInjectedBundleURL:]):
(-[WKProcessGroup delegate]):
(-[WKProcessGroup setDelegate:]):
Add WKProcessGroupDelegate to inform the user of when connections are established.
- WebKit2.xcodeproj/project.pbxproj:
Add new files.
- 1:41 PM Changeset in webkit [102615] by
-
- 9 edits in trunk/Source/WebKit2
Rename QueueClient::willProcessMessageOnClientRunLoop
https://bugs.webkit.org/show_bug.cgi?id=74325
Reviewed by Sam Weinig.
Rename the QueueClient willProcessMessageOnClientRunLoop function to didReceiveMessageOnConnectionWorkQueue
and give it an out parameter to indicate whether the message was handled or not. This makes it more clear that
the function is expected to handle the message.
- Platform/CoreIPC/Connection.cpp:
(CoreIPC::Connection::processIncomingMessage):
- Platform/CoreIPC/Connection.h:
- Scripts/webkit2/messages.py:
(async_case_statement):
- Scripts/webkit2/messages_unittest.py:
- WebProcess/WebConnectionToUIProcess.cpp:
(WebKit::WebConnectionToUIProcess::didReceiveMessageOnConnectionWorkQueue):
- WebProcess/WebConnectionToUIProcess.h:
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::didReceiveMessageOnConnectionWorkQueue):
- WebProcess/WebProcess.h:
- 1:26 PM Changeset in webkit [102614] by
-
- 2 edits3 copies in branches/chromium/963
Merge 102602 - Source/WebCore: A SubresourceLoader in the middle of revalidating
a resource should be treated as finishing (similar to
didFinishLoading and didFail) to ensure that willCancel()
doesn't declare the revalidation as having failed reentrantly.
https://bugs.webkit.org/show_bug.cgi?id=72762
Reviewed by Adam Barth.
Test: http/tests/cache/cancel-during-revalidation-succeeded.html
- loader/SubresourceLoader.cpp:
(WebCore::SubresourceLoader::didReceiveResponse):
LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=72762
Reviewed by Adam Barth.
- http/tests/cache/cancel-during-revalidation-succeeded-expected.txt: Added.
- http/tests/cache/cancel-during-revalidation-succeeded.html: Added.
- http/tests/cache/resources/stylesheet304.php: Added.
TBR=Nate Chapin
Review URL: http://codereview.chromium.org/8920011
- 1:25 PM Changeset in webkit [102613] by
-
- 2 edits in trunk/Source/WebCore
r102234 caused RuleData to use 33 bits in its bitmask
https://bugs.webkit.org/show_bug.cgi?id=74314
Reviewed by Antti Koivisto.
Lower m_position to something more reasonable. A million
should be plenty. Current large sites (e.g. gmail) seem to use
tens of thousands.
Added a COMPILE_ASSERT to ensure this doesn't regress.
No new tests.
- css/CSSStyleSelector.cpp:
- 12:58 PM Changeset in webkit [102612] by
-
- 11 edits in trunk
Rename webkitCancelRequestAnimationFrame to webkitCancelAnimationFrame to match spec change
https://bugs.webkit.org/show_bug.cgi?id=74231
Patch by James Robinson <jamesr@chromium.org> on 2011-12-12
Reviewed by Simon Fraser.
Source/WebCore:
The RequestAnimationFrame spec has renamed cancelRequestAnimationFrame to cancelAnimationFrame in response to
feedback from Mozilla and Microsoft that the old name was too long and didn't parallel setTimeout/clearTimeout
and setInterval/clearInterval very well. This updates our IDL to match, while preserving the old name as an
alias to be compatible with current content.
- dom/Document.cpp:
(WebCore::Document::webkitCancelAnimationFrame):
- dom/Document.h:
- page/DOMWindow.cpp:
(WebCore::DOMWindow::webkitCancelAnimationFrame):
- page/DOMWindow.h:
(WebCore::DOMWindow::webkitCancelRequestAnimationFrame):
- page/DOMWindow.idl:
LayoutTests:
Update requestAnimationFrame tests to refer to the new function name.
- fast/animation/request-animation-frame-missing-arguments.html:
- fast/animation/script-tests/request-animation-frame-cancel.js:
(window):
- fast/animation/script-tests/request-animation-frame-cancel2.js:
- 12:53 PM Changeset in webkit [102611] by
-
- 4 edits in trunk/Source
[chromium] Remove assumption that empty surface is always at end of list
https://bugs.webkit.org/show_bug.cgi?id=74037
Patch by Shawn Singh <shawnsingh@chromium.org> on 2011-12-12
Reviewed by James Robinson.
Source/WebCore:
Test case added to CCLayerTreeHostCommonTest.cpp, which reproduces
a crash reported in http://code.google.com/p/chromium/issues/detail?id=106734
This patch fixes the crash in a less risky way to be merged into
m17, but the root of the issue needs to be addressed in a
follow-up patch.
- platform/graphics/chromium/cc/CCLayerTreeHostCommon.cpp:
(WebCore::calculateDrawTransformsAndVisibilityInternal):
Source/WebKit/chromium:
- tests/CCLayerTreeHostCommonTest.cpp:
(WebCore::TEST):
- 12:47 PM Changeset in webkit [102610] by
-
- 3 edits in trunk/Source/WebKit/chromium
[chromium] Remove BufferDrag from WebClipboard::Buffer enum.
https://bugs.webkit.org/show_bug.cgi?id=74227
Reviewed by Tony Chang.
This enum value was intended for asynchronous data retrieval during drop operations; since
that was never implemented, I'm removing this enum value.
- public/platform/WebClipboard.h:
- src/AssertMatchingEnums.cpp:
- 12:29 PM Changeset in webkit [102609] by
-
- 2 edits in trunk/LayoutTests
Unreviewed Chromium gardening. Mark flaky crashing transitions/
test and update previously added flaky compositing test expectations.
- platform/chromium/test_expectations.txt:
- 11:16 AM Changeset in webkit [102608] by
-
- 6 edits in trunk/Source/WebCore
Share code that checks for matching sets of transform operations
https://bugs.webkit.org/show_bug.cgi?id=74265
Reviewed by Dan Bernstein.
Add TransformOperations::operationsMatch() and call it from the
three places that used this same code.
Tested by existing tests.
- page/animation/ImplicitAnimation.cpp:
(WebCore::ImplicitAnimation::validateTransformFunctionList):
- page/animation/KeyframeAnimation.cpp:
(WebCore::KeyframeAnimation::validateTransformFunctionList):
- platform/graphics/GraphicsLayer.cpp:
(WebCore::GraphicsLayer::fetchTransformOperationList):
- platform/graphics/transforms/TransformOperations.cpp:
(WebCore::TransformOperations::operationsMatch):
- platform/graphics/transforms/TransformOperations.h:
- 11:11 AM Changeset in webkit [102607] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, remove X86_64 modifier from GTK test_expectations list.
- platform/gtk/test_expectations.txt:
- 10:56 AM Changeset in webkit [102606] by
-
- 5 edits in trunk/Source/WebCore
Cache visited link hash
https://bugs.webkit.org/show_bug.cgi?id=74095
Reviewed by Darin Adler.
Visited link hash is relatively expensive to compute. We can cache it for anchor elements
with minimal relative memory cost for faster style resolve.
On my machine this speeds up style matching on full HTML spec by ~100ms or ~1% of the total
CPU usage. It makes link elements 8 bytes larger, a relatively minor increase to their overall size.
Invalidate the hashes on base URL for completeness sake (lack of style invalidation means
that this scenario is not properly supported currently).
Covered by existing tests. No specific test for visited hash invalidation on dynamic base URL
change as the effect is not testable due to lack of style invalidation.
- css/SelectorChecker.cpp:
(WebCore::SelectorChecker::determineLinkStateSlowCase):
(WebCore::SelectorChecker::visitedStateChanged):
- html/Document.cpp:
- html/HTMLAnchorElement.cpp:
(WebCore::HTMLAnchorElement::HTMLAnchorElement):
(WebCore::HTMLAnchorElement::parseMappedAttribute):
- html/HTMLAnchorElement.h:
(WebCore::HTMLAnchorElement::visitedLinkHash):
- 10:48 AM Changeset in webkit [102605] by
-
- 2 edits in trunk/Source/WebKit/mac
<rdar://problem/10328474> Text highlight changes to gray selection color when menu extra is shown
Reviewed by John Sullivan.
- WebView/WebView.mm:
(-[WebView _updateActiveState]): Changed to use -[NSWindow _hasKeyAppearance] instead
of -isKeyWindow. The former also returns YES when a menu extra is open.
(-[WebView addWindowObserversForWindow:]): Removed code to observe
NSWindowDidBecomeKeyNotification and NSWindowDidResignKeyNotification.
(-[WebView removeWindowObservers]): Removed code to stop observing the above.
(-[WebView _windowChangedKeyState]): Overridden this to call _updateActiveState.
This is called when the result of -_hasKeyAppearance changes.
(-[WebView _windowWillOrderOnScreen:]): Removed call to _updateActiveState,
previously needed for popovers, because _windowChangedKeyState is invoked
at the right time for them.
(-[WebView _windowWillOrderOffScreen:]): Ditto.
- 10:44 AM Changeset in webkit [102604] by
-
- 5 edits in trunk/Source
[GTK] gtk_widget_size_allocate for plugin widgets should happen in the WebView size-allocate method
https://bugs.webkit.org/show_bug.cgi?id=72805
Patch by Martin Robinson <mrobinson@igalia.com> on 2011-12-12
Reviewed by Gustavo Noronha Silva.
Source/WebCore:
No new tests. This is only a performance tweak.
Instead of immediately calling gtk_widget_size during painting, defer
this until the size-allocate method of the WebView.
- plugins/gtk/PluginViewGtk.cpp:
(WebCore::PluginView::updateWidgetAllocationAndClip): Instead of immediately changing
the widget allocation, just record it in a GObject data attachment.
Source/WebKit/gtk:
Instead of immediately calling gtk_widget_size during painting, defer
this until the size-allocate method of the WebView.
- WebCoreSupport/ChromeClientGtk.cpp:
(WebKit::ChromeClient::paint): If any child widgets have a pending allocation
call gtk_widget_size_allocate.
- webkit/webkitwebview.cpp:
(updateChildAllocationFromPendingAllocation): Added this helper.
(webkit_web_view_size_allocate): Call the helper on all child widgets.
- 10:40 AM Changeset in webkit [102603] by
-
- 9 edits1 copy in trunk/Source/WebKit/chromium
[chromium] MediaStream API: Moving WebMediaStreamSource.h
https://bugs.webkit.org/show_bug.cgi?id=74081
Moving WebMediaStreamSource.h to public/platform.
Keeping a stub in public as to not affect chromium right now.
Reviewed by Darin Fisher.
- WebKit.gyp:
- public/WebMediaStreamSource.h:
- public/platform/WebMediaStreamSource.h: Copied from Source/WebKit/chromium/public/WebMediaStreamSource.h.
(WebKit::WebMediaStreamSource::WebMediaStreamSource):
(WebKit::WebMediaStreamSource::~WebMediaStreamSource):
(WebKit::WebMediaStreamSource::isNull):
- src/AssertMatchingEnums.cpp:
- src/UserMediaClientImpl.cpp:
- src/WebMediaStreamDescriptor.cpp:
- src/WebMediaStreamRegistry.cpp:
- src/WebMediaStreamSource.cpp:
- src/WebUserMediaRequest.cpp:
- 10:27 AM Changeset in webkit [102602] by
-
- 4 edits3 adds in trunk
Source/WebCore: A SubresourceLoader in the middle of revalidating
a resource should be treated as finishing (similar to
didFinishLoading and didFail) to ensure that willCancel()
doesn't declare the revalidation as having failed reentrantly.
https://bugs.webkit.org/show_bug.cgi?id=72762
Reviewed by Adam Barth.
Test: http/tests/cache/cancel-during-revalidation-succeeded.html
- loader/SubresourceLoader.cpp:
(WebCore::SubresourceLoader::didReceiveResponse):
LayoutTests: Test for https://bugs.webkit.org/show_bug.cgi?id=72762
Reviewed by Adam Barth.
- http/tests/cache/cancel-during-revalidation-succeeded-expected.txt: Added.
- http/tests/cache/cancel-during-revalidation-succeeded.html: Added.
- http/tests/cache/resources/stylesheet304.php: Added.
- 10:18 AM Changeset in webkit [102601] by
-
- 3 edits in trunk/Source/WebKit/efl
[EFL] Add API to query the validity of a frame's SSL certificate.
https://bugs.webkit.org/show_bug.cgi?id=74302
Reviewed by Gustavo Noronha Silva.
- ewk/ewk_frame.cpp:
(ewk_frame_certificate_status_get):
- ewk/ewk_frame.h:
- 10:18 AM Changeset in webkit [102600] by
-
- 7 edits in trunk/Source/WebKit/efl
[EFL] Add API to notify that mixed content has been loaded.
https://bugs.webkit.org/show_bug.cgi?id=74301
Reviewed by Gustavo Noronha Silva.
When mixed content is displayed/run, both frames and views
emit the proper signals to notify API users.
- WebCoreSupport/FrameLoaderClientEfl.cpp:
(WebCore::FrameLoaderClientEfl::didDisplayInsecureContent):
(WebCore::FrameLoaderClientEfl::didRunInsecureContent):
- ewk/ewk_frame.cpp:
(ewk_frame_view_create_for_view):
(ewk_frame_mixed_content_displayed_get):
(ewk_frame_mixed_content_run_get):
(ewk_frame_mixed_content_displayed_set):
(ewk_frame_mixed_content_run_set):
- ewk/ewk_frame.h:
- ewk/ewk_private.h:
- ewk/ewk_view.cpp:
(ewk_view_frame_main_cleared):
(ewk_view_mixed_content_displayed_get):
(ewk_view_mixed_content_run_get):
(ewk_view_mixed_content_displayed_set):
(ewk_view_mixed_content_run_set):
- ewk/ewk_view.h:
- 10:18 AM Changeset in webkit [102599] by
-
- 3 edits in trunk/Source/WebKit/efl
[EFL] Add API to manage root X.509 CA certificates.
https://bugs.webkit.org/show_bug.cgi?id=74300
Reviewed by Martin Robinson.
- ewk/ewk_network.cpp:
(ewk_network_tls_ca_certificates_path_get):
(ewk_network_tls_ca_certificates_path_set):
- ewk/ewk_network.h:
- 10:17 AM Changeset in webkit [102598] by
-
- 4 edits in trunk/Source/WebKit/efl
[EFL] Add API to control whether SSL certificates should be checked.
https://bugs.webkit.org/show_bug.cgi?id=74299
Reviewed by Martin Robinson.
- ewk/ewk_main.cpp:
(_ewk_init_body): Explicitly disable certificate checks by default.
- ewk/ewk_network.cpp:
(ewk_network_tls_certificate_check_get):
(ewk_network_tls_certificate_check_set):
- ewk/ewk_network.h:
- 10:10 AM Changeset in webkit [102597] by
-
- 1 edit1 add3 deletes in trunk/Source/WebKit2
Unreviewed cleanup fix.
Add missing files from https://bugs.webkit.org/show_bug.cgi?id=73016
Also remove the files that should be removed.
- UIProcess/API/qt/tests/qmltests/WebView/tst_navigationHistory.qml: Added.
- UIProcess/qt/qwkhistory.cpp: Removed.
- UIProcess/qt/qwkhistory.h: Removed.
- UIProcess/qt/qwkhistory_p.h: Removed.
- 10:03 AM Changeset in webkit [102596] by
-
- 1 edit16 adds in trunk/LayoutTests
[Qt] Unreviewed gardening. Add Qt5 specific expected results after r102388.
- platform/qt-5.0/animations/cross-fade-background-image-expected.png: Added.
- platform/qt-5.0/animations/cross-fade-background-image-expected.txt: Added.
- platform/qt-5.0/animations/cross-fade-border-image-source-expected.png: Added.
- platform/qt-5.0/animations/cross-fade-border-image-source-expected.txt: Added.
- platform/qt-5.0/animations/cross-fade-list-style-image-expected.png: Added.
- platform/qt-5.0/animations/cross-fade-list-style-image-expected.txt: Added.
- platform/qt-5.0/animations/cross-fade-webkit-mask-box-image-expected.png: Added.
- platform/qt-5.0/animations/cross-fade-webkit-mask-box-image-expected.txt: Added.
- platform/qt-5.0/animations/cross-fade-webkit-mask-image-expected.png: Added.
- platform/qt-5.0/animations/cross-fade-webkit-mask-image-expected.txt: Added.
- platform/qt-5.0/transitions/cross-fade-background-image-expected.png: Added.
- platform/qt-5.0/transitions/cross-fade-background-image-expected.txt: Added.
- platform/qt-5.0/transitions/cross-fade-border-image-expected.png: Added.
- platform/qt-5.0/transitions/cross-fade-border-image-expected.txt: Added.
- 9:49 AM Changeset in webkit [102595] by
-
- 2 edits in trunk/LayoutTests
Unreviewed. Mark a couple of flaky compositing tests as failing.
- platform/chromium/test_expectations.txt:
- 9:48 AM Changeset in webkit [102594] by
-
- 2 edits in trunk/Tools
[Qt] Fix skip list search path and expected file search path in ORWT
https://bugs.webkit.org/show_bug.cgi?id=74281
Expected file search path fixed.
Print all used skipped list and expected search path in verbose mode similar to NRWT.
Patch by Ádám Kallai <Kallai.Adam@stud.u-szeged.hu> on 2011-12-12
Reviewed by Csaba Osztrogonác.
- Scripts/old-run-webkit-tests:
(buildPlatformResultHierarchy):
(buildPlatformTestHierarchy):
(readSkippedFiles):
- 9:40 AM Changeset in webkit [102593] by
-
- 3 edits in trunk/Source/WebKit2
[qt][wk2] Postpone scroll effects when page transition is ongoing.
https://bugs.webkit.org/show_bug.cgi?id=74177
Patch by Michael Bruning <michael.bruning@nokia.com> on 2011-12-12
Reviewed by Kenneth Rohde Christiansen.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::scrollPositionRequested):
- UIProcess/API/qt/qquickwebview_p_p.h:
(QQuickWebViewPrivate::PostTransitionState::apply):
- 9:30 AM Changeset in webkit [102592] by
-
- 10 edits in trunk
[Qt] Missing layoutTestController.dumpWillCacheResponse
https://bugs.webkit.org/show_bug.cgi?id=74287
Patch by Nándor Huszka <huszka.nandor@stud.u-szeged.hu> on 2011-12-12
Reviewed by Csaba Osztrogonác.
Source/WebKit/qt:
- WebCoreSupport/DumpRenderTreeSupportQt.cpp:
(DumpRenderTreeSupportQt::dumpWillCacheResponseCallbacks):
- WebCoreSupport/DumpRenderTreeSupportQt.h:
- WebCoreSupport/FrameLoaderClientQt.cpp:
(WebCore::FrameLoaderClientQt::dispatchDidReceiveResponse):
- WebCoreSupport/FrameLoaderClientQt.h:
Tools:
- DumpRenderTree/qt/LayoutTestControllerQt.cpp:
(LayoutTestController::reset):
(LayoutTestController::dumpWillCacheResponse):
- DumpRenderTree/qt/LayoutTestControllerQt.h:
LayoutTests:
- platform/qt/Skipped: Unskip http/tests/misc/willCacheResponse-delegate-callback.html
- 9:26 AM Changeset in webkit [102591] by
-
- 5 edits in trunk
[GTK] platform/gtk/fonts/custom-font-missing-glyphs.html fails on 64-bit Debug
https://bugs.webkit.org/show_bug.cgi?id=73771
Patch by Martin Robinson <mrobinson@igalia.com> on 2011-12-12
Reviewed by Gustavo Noronha Silva.
Tools:
When using a fallback font during testing, always use DejaVu Sans. This prevents
falling back to DejaVu Serif on some systems.
- DumpRenderTree/gtk/fonts/fonts.conf: Fall back to DejaVu Sans.
LayoutTests:
- platform/gtk/fonts/custom-font-missing-glyphs-expected.txt: Update results to reflect DejaVu Sans.
- platform/gtk/Skipped: Unskip a test that is now passing.
- 8:47 AM Changeset in webkit [102590] by
-
- 1 edit3 adds in trunk/Source/WebCore
Upstream 3 files into WebCore/platform/blackberry
https://bugs.webkit.org/show_bug.cgi?id=74275
Patch by Mary Wu <mary.wu@torchmobile.com.cn> on 2011-12-12
Reviewed by Rob Buis.
Initial upstream, no new tests.
- platform/blackberry/ContextMenuBlackBerry.cpp: Added.
- platform/blackberry/ContextMenuItemBlackBerry.cpp: Added.
- platform/blackberry/TemporaryLinkStubs.cpp: Added.
- 8:44 AM Changeset in webkit [102589] by
-
- 2 edits in trunk/Source/WebCore
[Qt] Rendering issues with sliders and QStyle
https://bugs.webkit.org/show_bug.cgi?id=73921
With QStyle's origins being deeply rooted with widgets,
several styles make wrong assumptions, leading to sliders
not being painted properly in WebKit. We can solve a lot
of problems by systematically translating the painter to
the top left corner of the render object.
Reviewed by Simon Hausmann.
No new tests. The Qt tests are ran with the Windows
style, this fixes some quirks affecting other styles.
- platform/qt/RenderThemeQStyle.cpp:
(WebCore::RenderThemeQStyle::paintSliderTrack):
(WebCore::RenderThemeQStyle::paintSliderThumb):
- 8:35 AM Changeset in webkit [102588] by
-
- 1 edit5 adds in trunk/Source/WebCore
Upstream 5 files into WebCore/platform/blackberry
https://bugs.webkit.org/show_bug.cgi?id=73798
Patch by Mary Wu <mary.wu@torchmobile.com.cn> on 2011-12-12
Reviewed by Rob Buis.
Main contributors:
Genevieve Mak <gmak@rim.com>
Mike Lattanzio <mlattanzio@rim.com>
George Staikos <gstaikos@rim.com>
Initial upstream, no new tests.
- platform/blackberry/PlatformTouchEventBlackBerry.cpp: Added.
(WebCore::PlatformTouchEvent::PlatformTouchEvent):
- platform/blackberry/PlatformTouchPointBlackBerry.cpp: Added.
(WebCore::PlatformTouchPoint::PlatformTouchPoint):
- platform/blackberry/SharedBufferBlackBerry.cpp: Added.
(WebCore::SharedBuffer::createWithContentsOfFile):
- platform/blackberry/SharedTimerBlackBerry.cpp: Added.
(WebCore::SharedTimerBlackBerry::SharedTimerBlackBerry):
(WebCore::SharedTimerBlackBerry::~SharedTimerBlackBerry):
(WebCore::SharedTimerBlackBerry::instance):
(WebCore::SharedTimerBlackBerry::start):
(WebCore::SharedTimerBlackBerry::stop):
(WebCore::setSharedTimerFiredFunction):
(WebCore::setSharedTimerFireInterval):
(WebCore::stopSharedTimer):
- platform/blackberry/SystemTimeBlackBerry.cpp: Added.
(WebCore::userIdleTime):
- 8:28 AM Changeset in webkit [102587] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, mark
http/tests/security/cross-origin-xsl-redirect-BLOCKED.html as
expected crasher on GTK 64-bit Debug.
- platform/gtk/test_expectations.txt:
- 8:14 AM Changeset in webkit [102586] by
-
- 3 edits in trunk/Source/WebKit2
[Qt][WK2] Remove dead code from QtWebPageProxy
https://bugs.webkit.org/show_bug.cgi?id=74296
Reviewed by Andreas Kling.
- UIProcess/qt/QtWebPageProxy.cpp:
- UIProcess/qt/QtWebPageProxy.h:
- 7:50 AM Changeset in webkit [102585] by
-
- 2 edits3 adds in trunk/Source/WebKit2
Unreviewed build fix.
Add missing files from https://bugs.webkit.org/show_bug.cgi?id=73016
- UIProcess/API/qt/qwebnavigationhistory.cpp: Added.
(QWebNavigationListModelPrivate::QWebNavigationListModelPrivate):
(QWebNavigationListModelPrivate::createWebNavigationModel):
(QWebNavigationHistoryPrivate::QWebNavigationHistoryPrivate):
(QWebNavigationHistoryPrivate::createHistory):
(QWebNavigationHistoryPrivate::reset):
(QWebNavigationHistoryPrivate::goBackTo):
(QWebNavigationHistoryPrivate::goForwardTo):
(QWebNavigationListModel::QWebNavigationListModel):
(QWebNavigationListModel::~QWebNavigationListModel):
(QWebNavigationListModel::rowCount):
(QWebNavigationListModel::data):
(QWebNavigationHistory::QWebNavigationHistory):
(QWebNavigationHistory::~QWebNavigationHistory):
(QWebNavigationHistory::backItems):
(QWebNavigationHistory::forwardItems):
- UIProcess/API/qt/qwebnavigationhistory_p.h: Added.
- UIProcess/API/qt/qwebnavigationhistory_p_p.h: Added.
- 7:47 AM Changeset in webkit [102584] by
-
- 4 edits in trunk/Source/WebCore
Implement a cache for CSSStyleRule::selectorText()
https://bugs.webkit.org/show_bug.cgi?id=74269
This change is geared towards speeding up the CSS selector profiler,
its implementation tracked at https://bugs.webkit.org/show_bug.cgi?id=74004.
Using a proof-of-concept implementation of the profiler, this change reduces
the profiler temporal overhead on PerformanceTests/Parser/html5-full-render.html
roughly by 86% (from ~72 seconds down to ~10 seconds). This change also does not
considerably increase average memory usage, as reading selectorText is a relatively
rare case during normal web browsing.
Reviewed by Andreas Kling.
No new tests, as this functionality is covered by existing tests.
- css/CSSRule.h:
- css/CSSStyleRule.cpp:
(WebCore::CSSStyleRule::~CSSStyleRule):
(WebCore::selectorTextCache):
(WebCore::CSSStyleRule::cleanup):
(WebCore::CSSStyleRule::generateSelectorText):
(WebCore::CSSStyleRule::selectorText):
(WebCore::CSSStyleRule::setSelectorText):
- css/CSSStyleRule.h:
- 7:42 AM Changeset in webkit [102583] by
-
- 4 edits in trunk/Source/WebKit2
[Qt] Move postMessage/messageReceived APIS to experimental
Reviewed by Tor Arne Vestbø.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::setPageProxy):
(QQuickWebViewExperimental::QQuickWebViewExperimental):
(QQuickWebViewExperimental::postMessage):
- UIProcess/API/qt/qquickwebview_p.h:
- UIProcess/API/qt/tests/qmltests/DesktopBehavior/tst_messaging.qml:
- 7:39 AM Changeset in webkit [102582] by
-
- 13 edits in trunk
[Qt][WK2] History is not accessible in QML.
https://bugs.webkit.org/show_bug.cgi?id=73016
Reviewed by Simon Hausmann.
.:
Add the new QWebNavigationHistory in the map file.
- Source/qtwebkit-export.map:
Source/WebKit/qt:
Register QWebNavigationHistory and QWebNavigationListModel in the QML plugin.
- declarative/experimental/plugin.cpp:
(WebKitQmlPlugin::registerTypes):
Source/WebKit2:
Remove the old qwkhistory and create QWebNavigationHistory which is QML
friendly with data models you can plug to a view in QML
- Target.pri:
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::didChangeBackForwardList):
(QQuickWebViewExperimental::navigationHistory):
(QQuickWebViewExperimental::goForwardTo):
(QQuickWebViewExperimental::goBackTo):
- UIProcess/API/qt/qquickwebview_p.h:
- UIProcess/API/qt/qquickwebview_p_p.h:
- UIProcess/API/qt/qwebnavigationhistory.cpp: Added.
(QWebNavigationListModelPrivate::QWebNavigationListModelPrivate):
(QWebNavigationListModelPrivate::createWebNavigationModel):
(QWebNavigationHistoryPrivate::QWebNavigationHistoryPrivate):
(QWebNavigationHistoryPrivate::createHistory):
(QWebNavigationHistoryPrivate::reset):
(QWebNavigationHistoryPrivate::goBackTo):
(QWebNavigationHistoryPrivate::goForwardTo):
(QWebNavigationListModel::QWebNavigationListModel):
(QWebNavigationListModel::~QWebNavigationListModel):
(QWebNavigationListModel::rowCount):
(QWebNavigationListModel::data):
(QWebNavigationHistory::QWebNavigationHistory):
(QWebNavigationHistory::~QWebNavigationHistory):
(QWebNavigationHistory::backItems):
(QWebNavigationHistory::forwardItems):
- UIProcess/API/qt/qwebnavigationhistory_p.h: Added.
- UIProcess/API/qt/qwebnavigationhistory_p_p.h: Renamed from Source/WebKit2/UIProcess/qt/qwkhistory_p.h.
- UIProcess/API/qt/tests/qmltests/WebView/tst_navigationHistory.qml: Added.
- UIProcess/qt/QtWebPageLoadClient.cpp:
(QtWebPageLoadClient::QtWebPageLoadClient):
(QtWebPageLoadClient::didChangeBackForwardList):
- UIProcess/qt/QtWebPageLoadClient.h:
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::QtWebPageProxy):
(QtWebPageProxy::~QtWebPageProxy):
(QtWebPageProxy::goBackTo):
(QtWebPageProxy::goForwardTo):
(QtWebPageProxy::navigationHistory):
- UIProcess/qt/QtWebPageProxy.h:
- UIProcess/qt/qwkhistory.cpp: Removed.
- UIProcess/qt/qwkhistory.h: Removed.
- 7:24 AM Changeset in webkit [102581] by
-
- 5 edits in trunk
Web Inspector: [Styles] Modified selector text needs sanitization
https://bugs.webkit.org/show_bug.cgi?id=74291
Reviewed by Yury Semikhatsky.
Source/WebCore:
- inspector/front-end/StylesSidebarPane.js:
LayoutTests:
- inspector/styles/commit-selector-expected.txt:
- inspector/styles/commit-selector.html:
- 7:13 AM Changeset in webkit [102580] by
-
- 4 edits in trunk/Source/WebCore
Fulfill FIXME in HTMLLinkElement.h.
https://bugs.webkit.org/show_bug.cgi?id=74278
Rename HTMLLinkElement::isLoading() to isStyleSheetLoading().
Reviewed by Andreas Kling.
No new tests because the functionality remains the same.
- dom/Document.cpp:
(WebCore::Document::recalcStyleSelector):
- html/HTMLLinkElement.cpp:
(WebCore::HTMLLinkElement::setDisabledState):
(WebCore::HTMLLinkElement::isStyleSheetLoading):
(WebCore::HTMLLinkElement::sheetLoaded):
- html/HTMLLinkElement.h:
- 6:54 AM Changeset in webkit [102579] by
-
- 7 edits in trunk/Source/WebKit2
[Qt][WK2] Move startDrag implementation to QtWebPageEventHandler
https://bugs.webkit.org/show_bug.cgi?id=73145
Reviewed by Simon Hausmann.
Move QtWebPageProxy::startDrag to QtWebPageEventHandler::startDrag
and call it straight from QtPageClient.
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::QQuickWebViewPrivate):
- UIProcess/qt/QtWebPageEventHandler.cpp:
(dragOperationToDropAction):
(dragOperationToDropActions):
(dropActionToDragOperation):
Now these functions are static inline and not part of QtWebPageEventHandler
anymore.
(QtWebPageEventHandler::QtWebPageEventHandler):
(QtWebPageEventHandler::startDrag):
- UIProcess/qt/QtWebPageEventHandler.h:
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::startDrag): removed.
- 6:46 AM Changeset in webkit [102578] by
-
- 12 edits in trunk
WebKit does not enumerate over CSS properties in HTMLElement.style
https://bugs.webkit.org/show_bug.cgi?id=23946
Reviewed by Darin Adler.
Source/JavaScriptCore:
Add a few exports to follow the JSCSSStyleDeclaration.cpp changes,
introduce an std::sort() comparator function.
- JavaScriptCore.exp:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- wtf/text/WTFString.h:
(WTF::codePointCompareLessThan): Used by std::sort() to sort properties.
Source/WebCore:
This change generates a list of JavaScript mirrors of the CSS properties and allows to enumerate them
using the "in" operator on the CSSStyleDeclaration object.
Test: fast/css/style-enumerate-properties.html
- bindings/js/JSCSSStyleDeclarationCustom.cpp:
(WebCore::JSCSSStyleDeclaration::getOwnPropertyNames): Added.
- bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp:
(WebCore::V8CSSStyleDeclaration::namedPropertyEnumerator): Added.
(WebCore::V8CSSStyleDeclaration::namedPropertyQuery): Added.
(WebCore::V8CSSStyleDeclaration::namedPropertyGetter): A small drive-by optimization (local initialization moved down).
- css/CSSStyleDeclaration.idl: Use a custom property enumerator.
- css/makeprop.pl: Add a function to convert CSS property names into JS ones.
LayoutTests:
- fast/css/style-enumerate-properties-expected.txt: Added.
- fast/css/style-enumerate-properties.html: Added.
- fast/dom/domListEnumeration-expected.txt:
- fast/dom/script-tests/domListEnumeration.js:
- 6:27 AM Changeset in webkit [102577] by
-
- 2 edits in trunk/LayoutTests
Web Inspector: unreviewed test fix for r102574
- inspector/profiler/detailed-heapshots-test.js:
- 6:09 AM Changeset in webkit [102576] by
-
- 2 edits in trunk/Tools
Add myself as a committer
- Scripts/webkitpy/common/config/committers.py:
- 6:06 AM Changeset in webkit [102575] by
-
- 12 edits2 deletes in trunk
Unreviewed, build fix.
Revert r102570 which broke SnowLeopard builders.
Source/JavaScriptCore:
- JavaScriptCore.exp:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- wtf/text/WTFString.h:
Source/WebCore:
- bindings/js/JSCSSStyleDeclarationCustom.cpp:
- bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp:
(WebCore::V8CSSStyleDeclaration::namedPropertyGetter):
- css/CSSStyleDeclaration.idl:
- css/makeprop.pl:
LayoutTests:
- fast/css/style-enumerate-properties-expected.txt: Removed.
- fast/css/style-enumerate-properties.html: Removed.
- fast/dom/domListEnumeration-expected.txt:
- fast/dom/script-tests/domListEnumeration.js:
- 5:58 AM Changeset in webkit [102574] by
-
- 6 edits in trunk/Source/WebCore
Web Inspector: chromium: UI: Detailed Heap snapshot shows too many objects' hidden properties.
https://bugs.webkit.org/show_bug.cgi?id=74289
WebCore objects have many hidden properties.
The Detailed Heap shapshot view shows all these props for a selected object.
The result view looks too heavy and users usually failed to find a useful information about the object.
Looks like such ability is unnecessary in the most cases.
I'd like to introduce a configurable property that will show/hide these props from the view.
Reviewed by Yury Semikhatsky.
- English.lproj/localizedStrings.js:
- inspector/front-end/DetailedHeapshotGridNodes.js:
- inspector/front-end/DetailedHeapshotView.js:
- inspector/front-end/HeapSnapshotProxy.js:
(WebInspector.HeapSnapshotProxy.prototype.createPathFinder):
- inspector/front-end/SettingsScreen.js:
(WebInspector.SettingsScreen):
- 5:53 AM Changeset in webkit [102573] by
-
- 14 edits3 adds2 deletes in trunk
[Qt] [WK2] Support customizing popup menus with QML
https://bugs.webkit.org/show_bug.cgi?id=73560
Reviewed by Tor Arne Vestbø.
Source/WebKit2:
Add a new property 'itemSelector' to WebView (experimental for now) that contains
the QML component used when it needs to spawn a popup menu. For example, <select>
HTML tag may trigger a popup menu.
When loaded the component will have the 'model' available in its context with two
properties: 'elementRect', describing the position of the element which spawned
the item selector, and 'items', which is a model ready to be used by ListView. The
'model' also have methods to accept/reject the selection.
Option groups are available as a property for each row in the 'items' model. This
can be used together with ListView to create sections, as demonstrated in the
MiniBrowser. QML tests were added as well.
The existing Desktop version is removed since after the Qt5 refactoring isn't
working correctly. Once Qt have its own QML components for popup, we hope to use
it as a default if no other popupMenu is specified.
- Target.pri:
- UIProcess/API/qt/qquickwebview.cpp:
(QQuickWebViewPrivate::QQuickWebViewPrivate):
(QQuickWebViewExperimental::itemSelector):
(QQuickWebViewExperimental::setItemSelector):
- UIProcess/API/qt/qquickwebview_p.h:
- UIProcess/API/qt/qquickwebview_p_p.h:
(QQuickWebViewPrivate::get):
- UIProcess/API/qt/tests/qmltests/WebView/tst_itemSelector.qml: Added.
- UIProcess/API/qt/tests/qmltests/common/select.html: Added.
- UIProcess/API/qt/tests/qmltests/qmltests.pro:
- UIProcess/qt/QtPageClient.cpp:
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::createPopupMenuProxy):
- UIProcess/qt/WebPopupMenuProxyQt.cpp:
(WebKit::PopupMenuItemModel::rowCount):
(WebKit::PopupMenuItemModel::Item::Item):
(WebKit::ItemSelectorContextObject::elementRect):
(WebKit::ItemSelectorContextObject::items):
(WebKit::ItemSelectorContextObject::reject):
(WebKit::ItemSelectorContextObject::ItemSelectorContextObject):
(WebKit::ItemSelectorContextObject::accept):
(WebKit::createRoleNamesHash):
(WebKit::PopupMenuItemModel::PopupMenuItemModel):
(WebKit::PopupMenuItemModel::data):
(WebKit::PopupMenuItemModel::select):
(WebKit::PopupMenuItemModel::selectedOriginalIndex):
(WebKit::PopupMenuItemModel::buildItems):
(WebKit::WebPopupMenuProxyQt::WebPopupMenuProxyQt):
(WebKit::WebPopupMenuProxyQt::showPopupMenu):
(WebKit::WebPopupMenuProxyQt::hidePopupMenu):
(WebKit::WebPopupMenuProxyQt::selectIndex):
(WebKit::WebPopupMenuProxyQt::createItem):
(WebKit::WebPopupMenuProxyQt::createContext):
(WebKit::WebPopupMenuProxyQt::notifyValueChanged):
- UIProcess/qt/WebPopupMenuProxyQt.h:
(WebKit::WebPopupMenuProxyQt::create):
- UIProcess/qt/WebPopupMenuProxyQtDesktop.cpp: Removed.
- UIProcess/qt/WebPopupMenuProxyQtDesktop.h: Removed.
Tools:
Add an Item Selector to our WebView using the experimental API.
- MiniBrowser/qt/MiniBrowser.pro:
- MiniBrowser/qt/MiniBrowser.qrc:
- MiniBrowser/qt/qml/BrowserWindow.qml:
- MiniBrowser/qt/qml/ItemSelector.qml: Added.
- 5:41 AM Changeset in webkit [102572] by
-
- 6 edits1 delete in trunk/Source/WebCore
Unreviewed, rolling out r102556.
http://trac.webkit.org/changeset/102556
https://bugs.webkit.org/show_bug.cgi?id=73394
clobber build failure
- WebCore.gyp/WebCore.gyp:
- WebCore.gyp/scripts/action_derivedsourcesallinone.py:
(main):
- WebCore.gypi:
- bindings/scripts/generate-bindings.pl:
- page/DOMWindow.idl:
- webaudio/DOMWindowWebAudio.idl: Removed.
- 5:39 AM Changeset in webkit [102571] by
-
- 3 edits1 delete in trunk/Source/WebCore
Unreviewed, rolling out r102558.
http://trac.webkit.org/changeset/102558
https://bugs.webkit.org/show_bug.cgi?id=74160
clobber build failure
- WebCore.gypi:
- page/DOMWindow.idl:
- websockets/DOMWindowWebSocket.idl: Removed.
- 5:23 AM Changeset in webkit [102570] by
-
- 12 edits2 adds in trunk
WebKit does not enumerate over CSS properties in HTMLElement.style
https://bugs.webkit.org/show_bug.cgi?id=23946
Reviewed by Darin Adler.
Source/JavaScriptCore:
Add a few exports to follow the JSCSSStyleDeclaration.cpp changes,
introduce an std::sort() comparator function.
- JavaScriptCore.exp:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- wtf/text/WTFString.h:
(WTF::codePointCompareLessThan): Used by std::sort() to sort properties.
Source/WebCore:
This change generates a list of JavaScript mirrors of the CSS properties and allows to enumerate them
using the "in" operator on the CSSStyleDeclaration object.
Test: fast/css/style-enumerate-properties.html
- bindings/js/JSCSSStyleDeclarationCustom.cpp:
(WebCore::JSCSSStyleDeclaration::getOwnPropertyNames): Added.
- bindings/v8/custom/V8CSSStyleDeclarationCustom.cpp:
(WebCore::V8CSSStyleDeclaration::namedPropertyEnumerator): Added.
(WebCore::V8CSSStyleDeclaration::namedPropertyQuery): Added.
(WebCore::V8CSSStyleDeclaration::namedPropertyGetter): A small drive-by optimization (local initialization moved down).
- css/CSSStyleDeclaration.idl: Use a custom property enumerator.
- css/makeprop.pl: Add a function to convert CSS property names into JS ones, and a string comparator.
LayoutTests:
- fast/css/style-enumerate-properties-expected.txt: Added.
- fast/css/style-enumerate-properties.html: Added.
- fast/dom/domListEnumeration-expected.txt:
- fast/dom/script-tests/domListEnumeration.js:
- 5:09 AM Changeset in webkit [102569] by
-
- 12 edits1 add in trunk/Source/WebCore
Web Inspector: provide per Document Node count statistics
https://bugs.webkit.org/show_bug.cgi?id=74100
Memory agent now returns counters for nodes with given names. For each
object group root user will see total number of its descendtants and per
tag name counts.
This patch also moves generic CounterVisitor code out of V8 bindings. It
may well be used with both JS engines.
Reviewed by Pavel Feldman.
- GNUmakefile.list.am:
- Target.pri:
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/ScriptProfiler.h:
(WebCore::ScriptProfiler::visitJSDOMWrappers):
- bindings/v8/ScriptProfiler.cpp:
(WebCore::ScriptProfiler::visitJSDOMWrappers):
- bindings/v8/ScriptProfiler.h:
- inspector/DOMWrapperVisitor.h: Added.
(WebCore::DOMWrapperVisitor::~DOMWrapperVisitor):
- inspector/Inspector.json:
- inspector/InspectorMemoryAgent.cpp:
(WebCore::InspectorMemoryAgent::getDOMNodeCount):
- inspector/InspectorMemoryAgent.h:
- 5:08 AM Changeset in webkit [102568] by
-
- 2 edits in trunk/Tools
[Qt] MiniBrowser should only visualize mock touch points when in non-desktop mode
https://bugs.webkit.org/show_bug.cgi?id=74283
Patch by Alexander Færøy <alexander.faeroy@nokia.com> on 2011-12-12
Reviewed by Simon Hausmann.
- MiniBrowser/qt/MiniBrowserApplication.cpp:
(MiniBrowserApplication::sendTouchEvent):
- 4:30 AM Changeset in webkit [102567] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, skip flaky fast/events/overflow-events.html test on GTK.
- platform/gtk/test_expectations.txt:
- 3:54 AM Changeset in webkit [102566] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, skip failing test on GTK.
- platform/gtk/Skipped: Skip editing/pasteboard/emacs-ctrl-k-with-move.html
- 2:54 AM Changeset in webkit [102565] by
-
- 3 edits in trunk/LayoutTests
Unreviewed, skip a flaky test and a failing test on GTK.
- platform/gtk/Skipped: Skip fast/events/dont-loose-last-event.html
- platform/gtk/test_expectations.txt: Mark
fullscreen/full-screen-iframe-legacy.html flaky.
- 2:03 AM Changeset in webkit [102564] by
-
- 2 edits in trunk/Source/JavaScriptCore
Unreviewed. Fix make distcheck issues.
- GNUmakefile.list.am:
- 1:39 AM Changeset in webkit [102563] by
-
- 1 edit7 adds in trunk/LayoutTests
Unreviewed, GTK baselines for tests added in r102388.
- platform/gtk/animations/cross-fade-background-image-expected.txt: Added.
- platform/gtk/animations/cross-fade-border-image-source-expected.txt: Added.
- platform/gtk/animations/cross-fade-list-style-image-expected.txt: Added.
- platform/gtk/animations/cross-fade-webkit-mask-box-image-expected.txt: Added.
- platform/gtk/animations/cross-fade-webkit-mask-image-expected.txt: Added.
- platform/gtk/transitions/cross-fade-background-image-expected.txt: Added.
- platform/gtk/transitions/cross-fade-border-image-expected.txt: Added.
- 12:58 AM Changeset in webkit [102562] by
-
- 2 edits in trunk/Tools
[Refactoring] In prepare-ChangeLog, move into a method the top-level code
to show ChangeLogs diff and open ChangeLogs in an editor
https://bugs.webkit.org/show_bug.cgi?id=74266
Reviewed by Ryosuke Niwa.
We are planning to write unit-tests for prepare-ChangeLog
in a run-leaks_unittest manner. This patch is one of the incremental
refactorings to remove all top-level code and global variables from
prepare-ChangeLog.
- Scripts/prepare-ChangeLog: Moved the top-level code to show ChangeLogs diff into printDiff().
Moved the top-level code to open ChangeLogs in an editor into openChangeLogs().
Renamed @changed_files to @changedFiles.
Renamed %conflict_files to %conflictFiles.
(generateFunctionLists):
(printDiff):
(openChangeLogs):
- 12:10 AM Changeset in webkit [102561] by
-
- 3 edits in trunk/Source/WebCore
WebPImageDecoder: Increase image/webp decoding performance 10-20%
https://bugs.webkit.org/show_bug.cgi?id=74263
Reviewed by Adam Barth.
Avoid copying data from the RGB buffer of decoded image output to the
backing pixel store. That is slow - costs 10% of the overall decoding
time at libwebp 0.1.2, and 20% at libwebp 0.1.3.
Instead, instruct the decoder to write the decoded pixels directly to
the backing pixel store.
No new tests. Covered by existing tests. No progressive decoding test
exists in DRT, see https://bugs.webkit.org/show_bug.cgi?id=74062
- platform/image-decoders/webp/WEBPImageDecoder.cpp:
(outputMode): Define output pixel format. On little-endian machines,
output BGRA pixels to the backing store, for example.
(WebCore::WEBPImageDecoder::WEBPImageDecoder):
(WebCore::WEBPImageDecoder::decode):
- platform/image-decoders/webp/WEBPImageDecoder.h:
Dec 11, 2011:
- 11:44 PM Changeset in webkit [102560] by
-
- 3 edits2 adds in trunk
Add new CSS nth-children parsing tests
https://bugs.webkit.org/show_bug.cgi?id=74178
Source/WebCore:
Reviewed by Darin Adler.
Test: fast/css/parsing-css-nth-child.html
- css/CSSParser.cpp:
(WebCore::isValidNthToken): Add "-n" to the possible identifiers.
LayoutTests:
The test covers several valid and invalid nth-child tokens.
Reviewed by Darin Adler.
- fast/css/parsing-css-nth-child-expected.txt: Added.
- fast/css/parsing-css-nth-child.html: Added.
- 11:07 PM Changeset in webkit [102559] by
-
- 2 edits in trunk/Tools
[Refactoring] Move top-level code to resolve conflicted ChangeLogs into a method
https://bugs.webkit.org/show_bug.cgi?id=74257
Reviewed by Ryosuke Niwa.
We are planning to write unit-tests for prepare-ChangeLog
in a run-leaks_unittest/ manner. This patch is one of the incremental
refactorings to remove all top-level code and global variables from
prepare-ChangeLog.
- Scripts/prepare-ChangeLog: Moved top-level code to get the latest ChangeLogs
into getLatestChangeLogs(), and moved top-level code to resolve conflicted ChangeLogs
into resolveConflictedChangeLogs().
(getLatestChangeLogs):
(resolveConflictedChangeLogs):
- 11:01 PM Changeset in webkit [102558] by
-
- 3 edits1 add in trunk/Source/WebCore
Use [Supplemental] IDL in WebSocket
https://bugs.webkit.org/show_bug.cgi?id=74160
Reviewed by Adam Barth.
By using the [Supplemental] IDL, this patch moves declarations of WebSocket
attributes from DOMWindow.idl to websocket/DOMWindowWebSocket.idl,
which helps make WebSocket a self-contained module.
No new tests, no change in behavior.
Confirm that http/tests/websocket/* pass.
- WebCore.gypi: Added DOMWindowWebSocket.idl.
- page/DOMWindow.idl: Added the [Supplemented] IDL to WebSocket-related attributes. This [Supplemented] IDL will be removed after all platforms support the [Supplemental] IDL (See bug 73394 for more details).
- websockets/DOMWindowWebSocket.idl: Added. Used the [Supplemental=DOMWindow] IDL. The attributes in this IDL file are treated as if they are described in DOMWindow.idl.
- 8:06 PM Changeset in webkit [102557] by
-
- 3 edits in trunk/Source/WebCore
Implement webkit-line-grid and webkit-line-grid-snap CSS properties in CSSStyleApplyProperty.
https://bugs.webkit.org/show_bug.cgi?id=74262
Reviewed by Andreas Kling.
No new tests / refactoring only.
- css/CSSStyleApplyProperty.cpp:
(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
- 7:55 PM Changeset in webkit [102556] by
-
- 6 edits1 add in trunk/Source/WebCore
Use the [Supplemental] IDL for webaudio attributes in Chromium
https://bugs.webkit.org/show_bug.cgi?id=73394
Reviewed by Adam Barth.
- Overview: Using the [Supplemental] IDL, this patch moves the attribute
declarations of webaudio from DOMWindow.idl into a new IDL file
webaudio/DOMWindowWebAudio.idl, which helps make webaudio a self-contained
feature (aka a module).
- This patch changes the build flow of WebCore.gyp as follows:
Previous build flow:
foreach $idl (all IDL files) {
generate-bindings.pl depends on $idl;
generate-bindings.pl reads $idl;
generate-bindings.pl generates .h and .cpp files for $idl;
}
New build flow (See the discussions in bug 72138 for more details):
resolve-supplemental.pl depends on all IDL files;
resolve-supplemental.pl reads all IDL files;
resolve-supplemental.pl resolves the dependency of [Supplemental=XXXX];
resolve-supplemental.pl outputs supplemental_dependency.tmp;
foreach $idl (all IDL files) {
generate-bindings.pl depends on $idl and supplemental_dependency.tmp;
generate-bindings.pl reads $idl;
generate-bindings.pl reads supplemental_dependency.tmp;
generate-bindings.pl generates .h and .cpp files for $idl, including all attributes in IDL files whilementing $idl;
}
- This patch introduces a temporary IDL, [Supplemented]. The [Supplemented] IDL
will be removed after build scripts for all platforms support the [Supplemental] IDL.
The motivation for the [Supplemented] IDL is as follows:
In order to support the [Supplemental] IDL, we need to
(1) run resolve-supplemental.pl and generate supplemental_dependency.tmp
(2) and run generate-bindings.pl with the supplemental_dependency.tmp.
This build flow requires a change on the following build scripts,
but changing all the build scripts all at once without any regression is too difficult:
- DerivedSources.make
- DerivedSources.pri
- GNUmakefile.am
- PlatformBlackBerry.cmake
- UseJSC.cmake
- UseV8.cmake
- WebCore.vcproj/MigrateScripts
- WebCore.vcproj/WebCore.vcproj
- bindings/gobject/GNUmakefile.am
- WebCore.gyp/WebCore.gyp
Thus, we are planning to change the build scripts one by one, which implies that
we need to allow the temporary state in which some build scripts support [Supplemental] IDL
but others do not. To accomplish this, we introduce a temporary IDL, [Supplemented].
The [Supplemented] IDL on an attribute means that the attribute is marked with [Supplemental]
in another IDL file somewhere, like this:
DOMWindowWebAudio.idl:
interface [
Supplemental=DOMWindow
] DOMWindowWebAudio {
attribute attr1;
attribute attr2;
};
DOMWindow.idl:
interface [
] DOMWindow {
attribute [Supplemented] attr1; This line will be removed after all build scripts support the [Su IDL
attribute [Supplemented] attr2; This line will be removed after all build scripts support the [Su IDL.
attribute attr3;
attribute attr4;
};
Assuming these IDL files, this patch implements the following logic in generate-bindings.pl:
- If a given build script supports the [Supplemental] IDL, generate-bindings.pl ignores all attributes with the [Supplemented] IDL.
- Otherwise, generate-bindings.pl treats all attributes with the [Supplemented] IDL as normal attributes and instead ignores all attributes with the [Supplemental] IDL (i.e. generate-bindings.pl generates nothing from the IDL file with the [Supplemental] IDL).
Tests: webaudio/*
- WebCore.gyp/WebCore.gyp: Describes the build flow that I described above.
- WebCore.gyp/scripts/action_derivedsourcesallinone.py:
(main): Reads the IDL file names from the input file (i.e. supplemental_dependency.tmp), which are described at the first column of each line in the input file. If the file name is a "/cygdrive/c/..."-style path, it is converted to a "C:\cygwin\..."-style path by the cygpath command.
- WebCore.gypi: Added DOMWindowWebAudio.idl.
- bindings/scripts/generate-bindings.pl: As a temporary solution, if the platform does not support the [Supplemental] IDL, the perl script ignores the [Supplemental] IDL and instead uses the [Supplemented] IDL. Otherwise, the perl script ignores the [Supplemented] IDL and instead uses the [Supplemental] IDL.
- page/DOMWindow.idl: Added the [Supplemented] IDL to webaudio-related attributes. As I described above, the [Supplemented] IDL will be removed after all platforms support the [Supplemental] IDL.
- webaudio/DOMWindowWebAudio.idl: Added. Describes the [Supplemental=DOMWindow] IDL. The attributes in this IDL file should be treated as if they are written in DOMWindow.idl.
- 7:43 PM Changeset in webkit [102555] by
-
- 3 edits in trunk/Source/WebCore
Micro-optimize CSSStyleSelector::findSiblingForStyleSharing().
<http://webkit.org/b/74261>
Reviewed by Antti Koivisto.
Move the isStyledElement() check from canShareStyleWithElement() into the
loop in findSiblingForStyleSharing(), and tighten up the argument/return
types to StyledElement* as appropriate.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::canShareStyleWithElement):
(WebCore::CSSStyleSelector::findSiblingForStyleSharing):
(WebCore::CSSStyleSelector::locateSharedStyle):
- css/CSSStyleSelector.h:
- 7:25 PM Changeset in webkit [102554] by
-
- 2 edits2 adds in trunk/Source/WebKit2
[Qt] QQuickWebView missing titleChanged signal tests
https://bugs.webkit.org/show_bug.cgi?id=73923
Patch by Gopal Raghavan <gopal.1.raghavan@nokia.com> on 2011-12-11
Reviewed by Simon Hausmann.
Added tests for QQuickWebView tilteChanged signal.
- UIProcess/API/qt/tests/qmltests/WebView/tst_titleChanged.qml: Added.
- UIProcess/API/qt/tests/qmltests/common/test3.html: Added.
- UIProcess/API/qt/tests/qmltests/qmltests.pro:
- 7:12 PM Changeset in webkit [102553] by
-
- 4 edits in trunk/Source/WebCore
Asynchronous path synchronous path of SpellChecker should share the code to mark misspellings.
https://bugs.webkit.org/show_bug.cgi?id=73616
Patch by Shinya Kawanaka <shinyak@google.com> on 2011-12-11
Reviewed by Hajime Morita.
Asynchronous spellchecking path should call the same method for the synchronous spellchecking path
to mark misspellings.
No new tests. Covered by existing tests.
- editing/Editor.cpp:
(WebCore::Editor::markAllMisspellingsAndBadGrammarInRanges):
(WebCore::Editor::markAndReplaceFor):
Takes SpellCheckRequest object.
- editing/Editor.h:
- editing/SpellChecker.cpp:
(WebCore::SpellChecker::didCheck):
Calls the same method of synchronous spellchecking path.
- 6:24 PM Changeset in webkit [102552] by
-
- 3 edits in trunk/Source/WebCore
Implement CSS display property in CSSStyleApplyProperty.
https://bugs.webkit.org/show_bug.cgi?id=73500
Reviewed by Andreas Kling.
Refactoring only / no functionality changed.
- css/CSSStyleApplyProperty.cpp:
(WebCore::ApplyPropertyDisplay::isValidDisplayValue):
(WebCore::ApplyPropertyDisplay::applyInheritValue):
(WebCore::ApplyPropertyDisplay::applyInitialValue):
(WebCore::ApplyPropertyDisplay::applyValue):
(WebCore::ApplyPropertyDisplay::createHandler):
(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
- 5:22 PM Changeset in webkit [102551] by
-
- 2 edits in trunk/Source/WebKit2
Crash when trying to garbage collect JavaScript objects
https://bugs.webkit.org/show_bug.cgi?id=74259
<rdar://problem/10556188>
Reviewed by Sam Weinig.
- UIProcess/WebContext.cpp:
(WebKit::WebContext::garbageCollectJavaScriptObjects):
Use sendToAllProcesses which is more correct and also handles m_process being null.
- 5:22 PM Changeset in webkit [102550] by
-
- 2 edits in trunk/Source/JavaScriptCore
Fix another signed vs. unsigned warning
- runtime/ArgList.h:
(JSC::MarkedArgumentBuffer::~MarkedArgumentBuffer):
- 5:05 PM Changeset in webkit [102549] by
-
- 2 edits in trunk/Source/JavaScriptCore
Fix a signed vs. unsigned warning.
- runtime/ArgList.cpp:
(JSC::MarkedArgumentBuffer::slowAppend):
Cast inlineCapacity to an int to appease the warning. This is known OK
since inlineCapacity is defined to be 8.
- 4:50 PM Changeset in webkit [102548] by
-
- 2 edits in trunk/Source/WebCore
Try to fix the Qt build.
Unreviewed.
- css/CSSStyleDeclaration.cpp: Maybe an #include will solve our problem?
Someday, compiler error messages will not suck. Today is not that day.
- 4:45 PM Changeset in webkit [102547] by
-
- 2 edits in trunk/Source/JavaScriptCore
Rolled out *another* debugging change I committed accidentally.
Unreviewed.
- Configurations/Base.xcconfig:
- 4:40 PM Changeset in webkit [102546] by
-
- 2 edits in trunk/Source/JavaScriptCore
Rolled out a debug counter I committed accidentally.
Unreviewed.
- jit/JITStubs.cpp:
(JSC::arityCheckFor):
- 4:35 PM Changeset in webkit [102545] by
-
- 38 edits in trunk/Source/JavaScriptCore
v8 benchmark takes 12-13 million function call slow paths due to extra arguments
https://bugs.webkit.org/show_bug.cgi?id=74244
Reviewed by Filip Pizlo.
.arguments function of order the Reversed
10% speedup on v8-raytrace, 1.7% speedup on v8 overall, neutral on Kraken
and SunSpider.
- bytecode/CodeBlock.h:
(JSC::CodeBlock::valueProfileForArgument): Clarified that the interface
to this function is an argument number.
- bytecompiler/BytecodeGenerator.cpp:
(JSC::BytecodeGenerator::BytecodeGenerator):
(JSC::BytecodeGenerator::emitCall):
(JSC::BytecodeGenerator::emitConstruct):
(JSC::BytecodeGenerator::isArgumentNumber): Switched to using CallFrame
helper functions for computing offsets for arguments, rather than doing
the math by hand.
Switched to iterating argument offsets backwards (--) instead of forwards (++).
- bytecompiler/BytecodeGenerator.h:
(JSC::CallArguments::thisRegister):
(JSC::CallArguments::argumentRegister):
(JSC::CallArguments::registerOffset): Updated for arguments being reversed.
- bytecompiler/NodesCodegen.cpp: Allocate arguments in reverse order.
- dfg/DFGByteCodeParser.cpp:
(JSC::DFG::ByteCodeParser::getArgument):
(JSC::DFG::ByteCodeParser::setArgument):
(JSC::DFG::ByteCodeParser::flush):
(JSC::DFG::ByteCodeParser::addCall):
(JSC::DFG::ByteCodeParser::handleCall):
(JSC::DFG::ByteCodeParser::handleInlining):
(JSC::DFG::ByteCodeParser::handleMinMax):
(JSC::DFG::ByteCodeParser::handleIntrinsic):
(JSC::DFG::ByteCodeParser::parseBlock):
(JSC::DFG::ByteCodeParser::processPhiStack): Use abstract argument indices
that just-in-time convert to bytecode operands (i.e., indexes in the register
file) through helper functions. This means only one piece of code needs
to know how arguments are laid out in the register file.
- dfg/DFGGraph.cpp:
(JSC::DFG::Graph::dump): Ditto.
- dfg/DFGGraph.h:
(JSC::DFG::Graph::valueProfileFor): Ditto.
- dfg/DFGJITCompiler.cpp:
(JSC::DFG::JITCompiler::compileFunction): The whole point of this patch:
Treat too many arguments as an arity match.
- dfg/DFGOSRExit.h:
(JSC::DFG::OSRExit::variableForIndex):
(JSC::DFG::OSRExit::operandForIndex): Use helper functions, as above.
- dfg/DFGOperands.h:
(JSC::DFG::operandToArgument):
(JSC::DFG::argumentToOperand): These are now the only two lines of code in
the DFG compiler that know how arguments are laid out in memory.
(JSC::DFG::Operands::operand):
(JSC::DFG::Operands::setOperand): Use helper functions, as above.
- dfg/DFGOperations.cpp: The whole point of this patch:
Treat too many arguments as an arity match.
- dfg/DFGSpeculativeJIT32_64.cpp:
(JSC::DFG::SpeculativeJIT::emitCall): Use helper functions, as above.
Also, don't tag the caller frame slot as a cell, because it's not a cell.
- dfg/DFGSpeculativeJIT64.cpp:
(JSC::DFG::SpeculativeJIT::emitCall): Use helper functions, as above.
- dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::SpeculativeJIT::compile): Use helper functions, as above.
(JSC::DFG::SpeculativeJIT::checkArgumentTypes): Use already-computed
argument virtual register instead of recomputing by hand.
- dfg/DFGSpeculativeJIT.h:
(JSC::DFG::SpeculativeJIT::callFrameSlot):
(JSC::DFG::SpeculativeJIT::argumentSlot):
(JSC::DFG::SpeculativeJIT::callFrameTagSlot):
(JSC::DFG::SpeculativeJIT::callFramePayloadSlot):
(JSC::DFG::SpeculativeJIT::argumentTagSlot):
(JSC::DFG::SpeculativeJIT::argumentPayloadSlot): Added a few helper
functions for dealing with callee arguments specifically. These still
build on top of our other helper functions, and have no direct knowledge
of how arguments are laid out in the register file.
(JSC::DFG::SpeculativeJIT::resetCallArguments):
(JSC::DFG::SpeculativeJIT::addCallArgument): Renamed argumentIndex to
argumentOffset to match CallFrame naming.
(JSC::DFG::SpeculativeJIT::valueSourceReferenceForOperand): Use helper
functions, as above.
- interpreter/CallFrame.h:
(JSC::ExecState::argumentOffset):
(JSC::ExecState::argumentOffsetIncludingThis):
(JSC::ExecState::argument):
(JSC::ExecState::setArgument):
(JSC::ExecState::thisArgumentOffset):
(JSC::ExecState::thisValue):
(JSC::ExecState::setThisValue):
(JSC::ExecState::offsetFor):
(JSC::ExecState::hostThisRegister):
(JSC::ExecState::hostThisValue): Added a bunch of helper functions for
computing where an argument is in the register file. Anything in the
runtime that needs to access arguments should use these helpers.
- interpreter/CallFrameClosure.h:
(JSC::CallFrameClosure::setThis):
(JSC::CallFrameClosure::setArgument):
(JSC::CallFrameClosure::resetCallFrame): This stuff is a lot simpler, now
that too many arguments counts as an arity match and doesn't require
preserving two copies of our arguments.
- interpreter/Interpreter.cpp:
(JSC::Interpreter::slideRegisterWindowForCall): Only need to do something
special if the caller provided too few arguments.
Key simplification: We never need to maintain two copies of our arguments
anymore.
(JSC::eval):
(JSC::loadVarargs): Use helper functions.
(JSC::Interpreter::unwindCallFrame): Updated for new interface.
(JSC::Interpreter::execute):
(JSC::Interpreter::executeCall):
(JSC::Interpreter::executeConstruct):
(JSC::Interpreter::prepareForRepeatCall): Seriously, though: use helper
functions.
(JSC::Interpreter::privateExecute): No need to check for stack overflow
when calling host functions because they have zero callee registers.
(JSC::Interpreter::retrieveArguments): Explicitly tear off the arguments
object, since there's no special constructor for this anymore.
- interpreter/Interpreter.h: Reduced the C++ re-entry depth because some
workers tests were hitting stack overflow in some of my testing. We should
make this test more exact in future.
- interpreter/RegisterFile.h: Death to all runtime knowledge of argument
location that does not belong to the CallFrame class!
- jit/JIT.cpp:
(JSC::JIT::privateCompile): I am a broken record and I use helper functions.
Also, the whole point of this patch: Treat too many arguments as an arity match.
- jit/JITCall32_64.cpp:
(JSC::JIT::compileLoadVarargs):
- jit/JITCall.cpp:
(JSC::JIT::compileLoadVarargs): Updated the argument copying math to use
helper functions, for backwards-correctness. Removed the condition
pertaining to declared argument count because, now that arguments are
always in just one place, this optimization is valid for all functions.
Standardized the if predicate for each line of the optimization. This might
fix a bug, but I couldn't get the bug to crash in practice.
- jit/JITOpcodes32_64.cpp:
(JSC::JIT::emit_op_create_arguments):
(JSC::JIT::emit_op_get_argument_by_val):
(JSC::JIT::emitSlow_op_get_argument_by_val):
- jit/JITOpcodes.cpp:
(JSC::JIT::emit_op_create_arguments):
(JSC::JIT::emit_op_get_argument_by_val):
(JSC::JIT::emitSlow_op_get_argument_by_val): Removed cti_op_create_arguments_no_params
optimization because it's no longer an optimization, now that arguments
are always contiguous in a known location.
Updated argument access opcode math for backwards-correctness.
- jit/JITStubs.cpp:
(JSC::arityCheckFor): Updated just like slideRegisterWindowForCall. This
function is slightly different because it copies the call frame in
addition to the arguments. (In the Interpreter, the call frame is not
set up by this point.)
(JSC::lazyLinkFor): The whole point of this patch: Treat too many
arguments as an arity match.
(JSC::DEFINE_STUB_FUNCTION): Updated for new iterface to tearOff().
- jit/JITStubs.h:
- jit/SpecializedThunkJIT.h:
(JSC::SpecializedThunkJIT::loadDoubleArgument):
(JSC::SpecializedThunkJIT::loadCellArgument):
(JSC::SpecializedThunkJIT::loadInt32Argument): Use helper functions! They
build strong bones and teeth!
- runtime/ArgList.cpp:
(JSC::ArgList::getSlice):
(JSC::MarkedArgumentBuffer::slowAppend):
- runtime/ArgList.h:
(JSC::MarkedArgumentBuffer::MarkedArgumentBuffer):
(JSC::MarkedArgumentBuffer::~MarkedArgumentBuffer):
(JSC::MarkedArgumentBuffer::at):
(JSC::MarkedArgumentBuffer::clear):
(JSC::MarkedArgumentBuffer::append):
(JSC::MarkedArgumentBuffer::removeLast):
(JSC::MarkedArgumentBuffer::last):
(JSC::ArgList::ArgList):
(JSC::ArgList::at): Updated for backwards-correctness. WTF::Vector doesn't
play nice with backwards-ness, so I changed to using manual allocation.
Fixed a FIXME about not all values being marked in the case of out-of-line
arguments. I had to rewrite the loop anyway, and I didn't feel like
maintaining fidelity to its old bugs.
- runtime/Arguments.cpp:
(JSC::Arguments::visitChildren):
(JSC::Arguments::copyToArguments):
(JSC::Arguments::fillArgList):
(JSC::Arguments::getOwnPropertySlotByIndex):
(JSC::Arguments::getOwnPropertySlot):
(JSC::Arguments::getOwnPropertyDescriptor):
(JSC::Arguments::putByIndex):
(JSC::Arguments::put):
(JSC::Arguments::tearOff):
- runtime/Arguments.h:
(JSC::Arguments::create):
(JSC::Arguments::Arguments):
(JSC::Arguments::argument):
(JSC::Arguments::finishCreation): Secondary benefit of this patch: deleted
lots of tricky code designed to maintain two different copies of function
arguments. Now that arguments are always contiguous in one place in memory,
this complexity can go away.
Reduced down to one create function for the Arguments class, from three.
Moved tearOff() into an out-of-line function because it's huge.
Moved logic about whether to tear off eagerly into the Arguments class,
so we didn't have to duplicate it elsewhere.
- runtime/JSActivation.cpp:
(JSC::JSActivation::JSActivation):
(JSC::JSActivation::visitChildren): Renamed m_numParametersMinusThis to
m_numCapturedArgs because if the value really were m_numParametersMinusThis
we would be marking too much. (We shouldn't mark 'this' because it can't
be captured.) Also, use helper functions.
- runtime/JSActivation.h:
(JSC::JSActivation::tearOff): Use helper functions.
- runtime/JSArray.cpp:
(JSC::JSArray::copyToArguments):
- runtime/JSArray.h: Use helper functions, as above.
- 4:24 PM Changeset in webkit [102544] by
-
- 3 edits in trunk/Source/WebCore
Implement CSS resize property in CSSStyleApplyProperty.
https://bugs.webkit.org/show_bug.cgi?id=74162
Reviewed by Julien Chaffraix.
No new tests / refactoring only.
- css/CSSStyleApplyProperty.cpp:
(WebCore::ApplyPropertyResize::applyValue):
(WebCore::ApplyPropertyResize::createHandler):
(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
- 3:07 PM Changeset in webkit [102543] by
-
- 12 edits2 adds in trunk/Source/WebCore
Move CSSElementStyleDeclaration to its own cpp/h files.
<http://webkit.org/b/74256>
Reviewed by Sam Weinig.
CSSElementStyleDeclaration is old enough to move out of CSSMutableStyleDeclaration's
attic and into her own apartment.
- CMakeLists.txt:
- GNUmakefile.list.am:
- Target.pri:
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSDOMBinding.h:
- css/CSSElementStyleDeclaration.cpp: Added.
(WebCore::CSSElementStyleDeclaration::styleSheet):
- css/CSSElementStyleDeclaration.h: Added.
(WebCore::CSSElementStyleDeclaration::element):
(WebCore::CSSElementStyleDeclaration::setElement):
(WebCore::CSSElementStyleDeclaration::CSSElementStyleDeclaration):
(WebCore::CSSElementStyleDeclaration::~CSSElementStyleDeclaration):
- css/CSSInlineStyleDeclaration.h:
- css/CSSMutableStyleDeclaration.cpp:
- css/CSSMutableStyleDeclaration.h:
- dom/CSSMappedAttributeDeclaration.h:
- 2:20 PM Changeset in webkit [102542] by
-
- 3 edits in trunk/Source/WebCore
Add KillRingNone.cpp to Mac build system
https://bugs.webkit.org/show_bug.cgi?id=74168
Patch by Benjamin Poulain <bpoulain@apple.com> on 2011-12-11
Reviewed by David Kilzer.
Add KillRingNone.cpp so it can be used on iOS, but
blacklist the file from the build in order to avoid
conflicts with KillRingMac.
- Configurations/WebCore.xcconfig:
- WebCore.xcodeproj/project.pbxproj:
- 12:44 PM Changeset in webkit [102541] by
-
- 2 edits in trunk/Source/WebCore
Web Inspector: [protocol] alter some type names generated from Inspector.json
https://bugs.webkit.org/show_bug.cgi?id=74247
Patch by Peter Rybin <peter.rybin@gmail.com> on 2011-12-11
Reviewed by Pavel Feldman.
Manually-filled map added that contains problem type names and its replacement.
- inspector/CodeGeneratorInspector.py:
(fix_type_name.Result):
(fix_type_name.Result.output_comment):
(fix_type_name):
(TypeBindings.create_for_named_type_declaration.write_doc):
(TypeBindings.create_for_named_type_declaration.EnumBinding.generate_type_builder):
(TypeBindings.create_for_named_type_declaration.PlainString.generate_type_builder):
(TypeBindings):
(TypeBindings.create_for_named_type_declaration.ClassBinding.generate_type_builder):
(Generator.process_types):
- 11:38 AM Changeset in webkit [102540] by
-
- 7 edits2 adds in trunk
WK2/NetscapePlugin: Incorrect mouse event coordinates when frameScaleFactor != 1.
<http://webkit.org/b/74209> and <rdar://problem/10438197>
Reviewed by Anders Carlsson.
Source/WebCore:
- WebCore.exp.in: Export AffineTransform::scale(double).
Source/WebKit2:
- Shared/WebEvent.h:
- Shared/WebMouseEvent.cpp:
Remove the WebMouseEvent "copy" constructor that applied a scale factor
to the coordinates of an existing event.
- WebProcess/Plugins/PluginView.cpp:
(WebKit::PluginView::handleEvent):
Pass the WebMouseEvent through to the plugin unmodified.
(WebKit::PluginView::viewGeometryDidChange):
Plumb a complex translate+scale transform through to the plugin, so coordinate
space transformations in will behave correctly with scale factors other than 1.
LayoutTests:
Add a test verifying that NetscapePlugins receive correctly transformed
mouse events with a page scale factor applied.
- platform/mac-wk2/plugins/mouse-events-scaled-expected.txt: Added.
- platform/mac-wk2/plugins/mouse-events-scaled.html: Added.
- 11:33 AM Changeset in webkit [102539] by
-
- 2 edits in trunk/Source/WebCore
Remove OS(SYMBIAN) block from Settings constructor.
<http://webkit.org/b/74248>
Reviewed by Benjamin Poulain.
Kill the last OS(SYMBIAN) block in WebKit!
- page/Settings.cpp:
(WebCore::Settings::Settings):
- 11:06 AM Changeset in webkit [102538] by
-
- 4 edits2 adds in trunk
Source/WebCore: <rdar://problem/10561285> REGRESSION (r80438): First word on a line or after collapsed space may not be hyphenated even though it should
https://bugs.webkit.org/show_bug.cgi?id=74239
Reviewed by Anders Carlsson.
Tests: fast/text/hyphenate-first-word-after-skipped-space-expected.html
fast/text/hyphenate-first-word-after-skipped-space.html
- rendering/RenderBlockLineLayout.cpp:
(WebCore::tryHyphenating): Replaced the assumption that the character at lastSpace is a space
iff lastSpace is non-zero with a test of whether it is a space, in the sense that it should
not be counted as part of the prefix when comparing it to the value of hyphenate-limit-before.
LayoutTests: Test and updated results for <rdar://problem/10561285> REGRESSION (r80438): First word on a line or after collapsed space may not be hyphenated even though it should
https://bugs.webkit.org/show_bug.cgi?id=74239
Reviewed by Anders Carlsson.
- fast/text/hyphenate-first-word-after-skipped-space-expected.html: Added.
- fast/text/hyphenate-first-word-after-skipped-space.html: Added.
- platform/mac/fast/text/hyphenate-limit-lines-expected.txt:
- 10:04 AM Changeset in webkit [102537] by
-
- 2 edits in trunk/Tools
[Refactoring] Move top-level code to generate a new ChangeLog into a method
https://bugs.webkit.org/show_bug.cgi?id=74253
Reviewed by David Kilzer.
The objective is to make prepare-ChangeLog a loadable Perl module for unit testing,
which requires to remove top-level code and global variables. This patch is one of
the incremental refactorings for that.
- Scripts/prepare-ChangeLog: Moved top-level code to generate a new ChangeLog into generateNewChangeLogs().
(generateFunctionLists):
(findChangeLogs):
(generateNewChangeLogs):
(generateFileList): Removed an unnecessary variable $didChangeRegressionTests.