Changeset 217576 in webkit
- Timestamp:
- May 30, 2017, 2:19:01 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 25 edited
- 2 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r217575 r217576 1 2017-05-30 Chris Dumez <cdumez@apple.com> 2 3 REGRESSION(r215946): Can't reference a table cell in Google spreadsheet 4 https://bugs.webkit.org/show_bug.cgi?id=172703 5 <rdar://problem/32458086> 6 7 Reviewed by Ryosuke Niwa. 8 9 Update existing tests to reflect behavior change. 10 11 * fast/dom/Element/getClientRects-return-type-expected.txt: 12 * fast/dom/Element/getClientRects-return-type.html: 13 * fast/dom/Range/getBoundingClientRect-getClientRects-return-type-expected.txt: 14 * fast/dom/Range/getBoundingClientRect-getClientRects-return-type.html: 15 1 16 2017-05-30 Javier Fernandez <jfernandez@igalia.com> 2 17 -
trunk/LayoutTests/fast/dom/Element/getClientRects-return-type-expected.txt
r215892 r217576 1 Tests that Element.getClientRects() returns a n arrayof DOMRect objects.1 Tests that Element.getClientRects() returns a list of DOMRect objects. 2 2 3 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". 4 4 5 5 6 PASS rects.__proto__ is Array.prototype7 6 PASS rects.length is 1 8 7 PASS rects[0].__proto__ is DOMRect.prototype 8 PASS rects[0] is rects.item(0) 9 9 PASS successfullyParsed is true 10 10 -
trunk/LayoutTests/fast/dom/Element/getClientRects-return-type.html
r215892 r217576 4 4 <script src="../../../resources/js-test-pre.js"></script> 5 5 <script> 6 description("Tests that Element.getClientRects() returns a n arrayof DOMRect objects.");6 description("Tests that Element.getClientRects() returns a list of DOMRect objects."); 7 7 8 8 const rects = document.body.getClientRects(); 9 shouldBe("rects.__proto__", "Array.prototype");10 9 shouldBe("rects.length", "1"); 11 10 shouldBe("rects[0].__proto__", "DOMRect.prototype"); 11 shouldBe("rects[0]", "rects.item(0)"); 12 12 </script> 13 13 <script src="../../../resources/js-test-post.js"></script>> -
trunk/LayoutTests/fast/dom/Range/getBoundingClientRect-getClientRects-return-type-expected.txt
r215946 r217576 5 5 6 6 PASS rect.__proto__ is DOMRect.prototype 7 PASS rects.__proto__ is Array.prototype8 7 PASS rects.length > 0 is true 8 PASS rects[0] is rects.item(0) 9 9 PASS rects[0].__proto__ is DOMRect.prototype 10 10 PASS successfullyParsed is true -
trunk/LayoutTests/fast/dom/Range/getBoundingClientRect-getClientRects-return-type.html
r215946 r217576 15 15 16 16 rects = range.getClientRects(); 17 shouldBe("rects.__proto__", "Array.prototype");18 17 shouldBeTrue("rects.length > 0"); 18 shouldBe("rects[0]", "rects.item(0)"); 19 19 shouldBe("rects[0].__proto__", "DOMRect.prototype"); 20 20 -
trunk/Source/WebCore/CMakeLists.txt
r217573 r217576 427 427 dom/DOMRect.idl 428 428 dom/DOMRectInit.idl 429 dom/DOMRectList.idl 429 430 dom/DOMRectReadOnly.idl 430 431 dom/DOMStringList.idl … … 1458 1459 dom/DOMImplementation.cpp 1459 1460 dom/DOMNamedFlowCollection.cpp 1460 dom/DOMRect .cpp1461 dom/DOMRectList.cpp 1461 1462 dom/DOMStringList.cpp 1462 1463 dom/DataTransfer.cpp -
trunk/Source/WebCore/ChangeLog
r217573 r217576 1 2017-05-30 Chris Dumez <cdumez@apple.com> 2 3 REGRESSION(r215946): Can't reference a table cell in Google spreadsheet 4 https://bugs.webkit.org/show_bug.cgi?id=172703 5 <rdar://problem/32458086> 6 7 Reviewed by Ryosuke Niwa. 8 9 We updated getClientRects() to return an array of DOMRect objects instead of 10 a ClientRectList type, to match the latest specification. As it turns out, this 11 is not Web-compatible as some content (as Google Spreadsheet) relies on the 12 return type having an item() operation. 13 14 This patch re-introduces a DOMRectList type, with an item() operation. The 15 DOMRectList name is currently not exposed to the Web as we do not know what's 16 going to get specified yet (https://github.com/w3c/csswg-drafts/issues/1479). 17 18 No new tests, updated existing tests. 19 20 * CMakeLists.txt: 21 * DerivedSources.make: 22 * WebCore.xcodeproj/project.pbxproj: 23 * dom/DOMRect.h: 24 * dom/DOMRectList.cpp: Copied from Source/WebCore/dom/DOMRect.cpp. 25 (WebCore::DOMRectList::DOMRectList): 26 (WebCore::DOMRectList::~DOMRectList): 27 * dom/DOMRectList.h: Copied from Source/WebCore/dom/DOMRect.cpp. 28 (WebCore::DOMRectList::create): 29 (WebCore::DOMRectList::length): 30 (WebCore::DOMRectList::item): 31 * dom/DOMRectList.idl: Renamed from Source/WebCore/dom/DOMRect.cpp. 32 * dom/Element.cpp: 33 (WebCore::Element::getClientRects): 34 * dom/Element.h: 35 * dom/Element.idl: 36 * dom/Range.cpp: 37 (WebCore::Range::getClientRects): 38 * dom/Range.h: 39 * dom/Range.idl: 40 * page/Page.cpp: 41 (WebCore::Page::nonFastScrollableRects): 42 (WebCore::Page::touchEventRectsForEvent): 43 (WebCore::Page::passiveTouchEventListenerRects): 44 * page/Page.h: 45 * testing/Internals.cpp: 46 (WebCore::Internals::inspectorHighlightRects): 47 (WebCore::Internals::touchEventRectsForEvent): 48 (WebCore::Internals::passiveTouchEventListenerRects): 49 (WebCore::Internals::nonFastScrollableRects): 50 * testing/Internals.h: 51 * testing/Internals.idl: 52 1 53 2017-05-30 Ali Juma <ajuma@chromium.org> 2 54 -
trunk/Source/WebCore/DerivedSources.make
r217573 r217576 367 367 $(WebCore)/dom/DOMRect.idl \ 368 368 $(WebCore)/dom/DOMRectInit.idl \ 369 $(WebCore)/dom/DOMRectList.idl \ 369 370 $(WebCore)/dom/DOMRectReadOnly.idl \ 370 371 $(WebCore)/dom/DOMStringList.idl \ -
trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
r217573 r217576 1937 1937 465307D11DB6EE4A00E4137C /* JSUIEventInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83E045EE1DAA104F00B0D8B9 /* JSUIEventInit.cpp */; }; 1938 1938 465A8E791C8A24CE00E7D3E4 /* RuntimeApplicationChecksCocoa.mm in Sources */ = {isa = PBXBuildFile; fileRef = 465A8E781C8A24CE00E7D3E4 /* RuntimeApplicationChecksCocoa.mm */; }; 1939 466DC6AC1EDE021D00746224 /* JSDOMRectList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 466DC6AB1EDE021D00746224 /* JSDOMRectList.cpp */; }; 1940 466ED8D31EDE0144005E43F6 /* JSDOMRectList.h in Headers */ = {isa = PBXBuildFile; fileRef = 466ED8D21EDE0135005E43F6 /* JSDOMRectList.h */; }; 1939 1941 4671E0651D67A59600C6B497 /* CanvasPath.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4671E0631D67A57B00C6B497 /* CanvasPath.cpp */; }; 1940 1942 4671E0661D67A59600C6B497 /* CanvasPath.h in Headers */ = {isa = PBXBuildFile; fileRef = 4671E0641D67A57B00C6B497 /* CanvasPath.h */; }; 1941 1943 467302021C4EFE7800BCB357 /* IgnoreOpensDuringUnloadCountIncrementer.h in Headers */ = {isa = PBXBuildFile; fileRef = 467302011C4EFE6600BCB357 /* IgnoreOpensDuringUnloadCountIncrementer.h */; }; 1944 468344DF1EDDFAAA00B7795B /* DOMRectList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 468344DD1EDDFA5F00B7795B /* DOMRectList.cpp */; }; 1945 468344E01EDDFAAA00B7795B /* DOMRectList.h in Headers */ = {isa = PBXBuildFile; fileRef = 468344DE1EDDFA5F00B7795B /* DOMRectList.h */; }; 1942 1946 4689F1AF1267BAE100E8D380 /* FileMetadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 4689F1AE1267BAE100E8D380 /* FileMetadata.h */; }; 1943 1947 46B63F6C1C6E8D19002E914B /* JSEventTargetCustom.h in Headers */ = {isa = PBXBuildFile; fileRef = 46B63F6B1C6E8CDF002E914B /* JSEventTargetCustom.h */; settings = {ATTRIBUTES = (Private, ); }; }; … … 3354 3358 83120C701C56F3F6001CB112 /* HTMLDataElement.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 831D1F291C56ECA000F5F6C0 /* HTMLDataElement.cpp */; }; 3355 3359 83120C711C56F3FB001CB112 /* HTMLDataElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 834B86A71C56E83A00F3F0E3 /* HTMLDataElement.h */; }; 3356 83149FF61EB38B3700089665 /* DOMRect.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83149FF51EB38B1200089665 /* DOMRect.cpp */; };3357 3360 832B843419D8E55100B26055 /* SVGAnimateElementBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 832B843319D8E55100B26055 /* SVGAnimateElementBase.h */; }; 3358 3361 832B843619D8E57400B26055 /* SVGAnimateElementBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832B843519D8E57400B26055 /* SVGAnimateElementBase.cpp */; }; … … 9655 9658 463EB6211B8789CB0096ED51 /* TagCollection.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TagCollection.h; sourceTree = "<group>"; }; 9656 9659 465A8E781C8A24CE00E7D3E4 /* RuntimeApplicationChecksCocoa.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = RuntimeApplicationChecksCocoa.mm; sourceTree = "<group>"; }; 9660 466DC6AB1EDE021D00746224 /* JSDOMRectList.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSDOMRectList.cpp; sourceTree = "<group>"; }; 9661 466ED8D21EDE0135005E43F6 /* JSDOMRectList.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSDOMRectList.h; sourceTree = "<group>"; }; 9657 9662 4671E0631D67A57B00C6B497 /* CanvasPath.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = CanvasPath.cpp; sourceTree = "<group>"; }; 9658 9663 4671E0641D67A57B00C6B497 /* CanvasPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CanvasPath.h; sourceTree = "<group>"; }; 9659 9664 467302011C4EFE6600BCB357 /* IgnoreOpensDuringUnloadCountIncrementer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IgnoreOpensDuringUnloadCountIncrementer.h; sourceTree = "<group>"; }; 9665 468344DC1EDDFA5F00B7795B /* DOMRectList.idl */ = {isa = PBXFileReference; lastKnownFileType = text; path = DOMRectList.idl; sourceTree = "<group>"; }; 9666 468344DD1EDDFA5F00B7795B /* DOMRectList.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = DOMRectList.cpp; sourceTree = "<group>"; }; 9667 468344DE1EDDFA5F00B7795B /* DOMRectList.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DOMRectList.h; sourceTree = "<group>"; }; 9660 9668 4689F1AE1267BAE100E8D380 /* FileMetadata.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FileMetadata.h; sourceTree = "<group>"; }; 9661 9669 46B63F6B1C6E8CDF002E914B /* JSEventTargetCustom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSEventTargetCustom.h; sourceTree = "<group>"; }; … … 11441 11449 830A36BA1DAC5FA7006D7D09 /* JSMouseEventInit.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JSMouseEventInit.cpp; sourceTree = "<group>"; }; 11442 11450 830A36BB1DAC5FA7006D7D09 /* JSMouseEventInit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JSMouseEventInit.h; sourceTree = "<group>"; }; 11443 83149FF51EB38B1200089665 /* DOMRect.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DOMRect.cpp; sourceTree = "<group>"; };11444 11451 831D1F291C56ECA000F5F6C0 /* HTMLDataElement.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = HTMLDataElement.cpp; sourceTree = "<group>"; }; 11445 11452 8329A4171EC25B2B008ED4BE /* DocumentAndElementEventHandlers.idl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DocumentAndElementEventHandlers.idl; sourceTree = "<group>"; }; … … 22067 22074 0F4710B71DB56BE8002DCEC3 /* JSDOMRectInit.cpp */, 22068 22075 0F4710B81DB56BE8002DCEC3 /* JSDOMRectInit.h */, 22076 466DC6AB1EDE021D00746224 /* JSDOMRectList.cpp */, 22077 466ED8D21EDE0135005E43F6 /* JSDOMRectList.h */, 22069 22078 0F4710B91DB56BE8002DCEC3 /* JSDOMRectReadOnly.cpp */, 22070 22079 0F4710BA1DB56BE8002DCEC3 /* JSDOMRectReadOnly.h */, … … 25697 25706 0F49669B1DB408C100A274BB /* DOMPointReadOnly.h */, 25698 25707 0F49669C1DB408C100A274BB /* DOMPointReadOnly.idl */, 25699 83149FF51EB38B1200089665 /* DOMRect.cpp */,25700 25708 0F4710A91DB56AFC002DCEC3 /* DOMRect.h */, 25701 25709 0F4710AA1DB56AFC002DCEC3 /* DOMRect.idl */, 25710 468344DD1EDDFA5F00B7795B /* DOMRectList.cpp */, 25711 468344DE1EDDFA5F00B7795B /* DOMRectList.h */, 25712 468344DC1EDDFA5F00B7795B /* DOMRectList.idl */, 25702 25713 0F4710AB1DB56AFC002DCEC3 /* DOMRectInit.h */, 25703 25714 0F4710AC1DB56AFC002DCEC3 /* DOMRectInit.idl */, … … 27167 27178 C544274B11A57E7A0063A749 /* DOMStringList.h in Headers */, 27168 27179 BC64640A11D7F304006455B0 /* DOMStringMap.h in Headers */, 27180 468344E01EDDFAAA00B7795B /* DOMRectList.h in Headers */, 27169 27181 188604B40F2E654A000B6443 /* DOMTimer.h in Headers */, 27170 27182 05FD69E012845D4300B2BEB3 /* DOMTimeStamp.h in Headers */, … … 27789 27801 BE8EF045171C8FF9009B48C3 /* JSAudioTrackList.h in Headers */, 27790 27802 76FB9FF919A73E3A00420562 /* JSAutocompleteErrorEvent.h in Headers */, 27803 466ED8D31EDE0144005E43F6 /* JSDOMRectList.h in Headers */, 27791 27804 BC124F000C26447A009E2349 /* JSBarProp.h in Headers */, 27792 27805 57C7A69F1E57917800C67D71 /* JSBasicCredential.h in Headers */, … … 30798 30811 D0EDA774143E303C0028E383 /* CachedRawResource.cpp in Sources */, 30799 30812 BCB16C1F0979C3BD00467741 /* CachedResource.cpp in Sources */, 30813 468344DF1EDDFAAA00B7795B /* DOMRectList.cpp in Sources */, 30800 30814 E47B4BE90E71241600038854 /* CachedResourceHandle.cpp in Sources */, 30801 30815 BCB16C290979C3BD00467741 /* CachedResourceLoader.cpp in Sources */, … … 31179 31193 A9C6E4EB0D745E2B006442E9 /* DOMPlugin.cpp in Sources */, 31180 31194 A9C6E4EF0D745E38006442E9 /* DOMPluginArray.cpp in Sources */, 31181 83149FF61EB38B3700089665 /* DOMRect.cpp in Sources */,31182 31195 BC5A86840C33676000EEA649 /* DOMSelection.cpp in Sources */, 31183 31196 C55610F111A704EB00B82D27 /* DOMStringList.cpp in Sources */, … … 33888 33901 CD8203111395ACE700F956C6 /* WebWindowAnimation.mm in Sources */, 33889 33902 F55B3DDF1251F12D003EF269 /* WeekInputType.cpp in Sources */, 33903 466DC6AC1EDE021D00746224 /* JSDOMRectList.cpp in Sources */, 33890 33904 85031B500A44EFC700F992E0 /* WheelEvent.cpp in Sources */, 33891 33905 2E19516B1B6598D200DF6EEF /* WheelEventDeltaFilter.cpp in Sources */, -
trunk/Source/WebCore/dom/DOMRect.h
r215956 r217576 59 59 }; 60 60 61 WEBCORE_EXPORT Vector<Ref<DOMRect>> createDOMRectVector(const Vector<FloatQuad>&);62 63 61 } -
trunk/Source/WebCore/dom/DOMRectList.cpp
r217575 r217576 25 25 26 26 #include "config.h" 27 #include "DOMRectList.h" 28 27 29 #include "DOMRect.h" 28 29 #include "FloatQuad.h"30 30 31 31 namespace WebCore { 32 32 33 Vector<Ref<DOMRect>> createDOMRectVector(const Vector<FloatQuad>& quads)33 DOMRectList::DOMRectList(const Vector<FloatQuad>& quads) 34 34 { 35 Vector<Ref<DOMRect>> result; 36 result.reserveInitialCapacity(quads.size()); 35 m_items.reserveInitialCapacity(quads.size()); 37 36 for (auto& quad : quads) 38 result.uncheckedAppend(DOMRect::create(quad.boundingBox())); 39 return result; 37 m_items.uncheckedAppend(DOMRect::create(quad.boundingBox())); 40 38 } 41 39 40 DOMRectList::~DOMRectList() 41 { 42 42 } 43 44 } // namespace WebCore -
trunk/Source/WebCore/dom/DOMRectList.h
r217575 r217576 24 24 */ 25 25 26 #include "config.h" 27 #include "DOMRect.h" 26 #pragma once 28 27 29 28 #include "FloatQuad.h" 29 #include <wtf/RefCounted.h> 30 #include <wtf/Vector.h> 30 31 31 32 namespace WebCore { 32 33 33 Vector<Ref<DOMRect>> createDOMRectVector(const Vector<FloatQuad>& quads) 34 { 35 Vector<Ref<DOMRect>> result; 36 result.reserveInitialCapacity(quads.size()); 37 for (auto& quad : quads) 38 result.uncheckedAppend(DOMRect::create(quad.boundingBox())); 39 return result; 40 } 34 class DOMRect; 35 36 class DOMRectList : public RefCounted<DOMRectList> { 37 public: 38 static Ref<DOMRectList> create(const Vector<FloatQuad>& quads) { return adoptRef(*new DOMRectList(quads)); } 39 static Ref<DOMRectList> create() { return adoptRef(*new DOMRectList()); } 40 WEBCORE_EXPORT ~DOMRectList(); 41 42 unsigned length() const { return m_items.size(); } 43 DOMRect* item(unsigned index) { return index < m_items.size() ? m_items[index].ptr() : nullptr; } 44 45 private: 46 WEBCORE_EXPORT explicit DOMRectList(const Vector<FloatQuad>& quads); 47 DOMRectList() = default; 48 49 Vector<Ref<DOMRect>> m_items; 50 }; 41 51 42 52 } -
trunk/Source/WebCore/dom/DOMRectList.idl
r217575 r217576 24 24 */ 25 25 26 #include "config.h" 27 #include "DOMRect.h" 28 29 #include "FloatQuad.h" 30 31 namespace WebCore { 32 33 Vector<Ref<DOMRect>> createDOMRectVector(const Vector<FloatQuad>& quads) 34 { 35 Vector<Ref<DOMRect>> result; 36 result.reserveInitialCapacity(quads.size()); 37 for (auto& quad : quads) 38 result.uncheckedAppend(DOMRect::create(quad.boundingBox())); 39 return result; 40 } 41 42 } 26 [ 27 ExportMacro=WEBCORE_EXPORT, 28 ImplementationLacksVTable, 29 NoInterfaceObject 30 ] interface DOMRectList { 31 readonly attribute unsigned long length; 32 getter DOMRect item(unsigned long index); 33 }; -
trunk/Source/WebCore/dom/Element.cpp
r216803 r217576 39 39 #include "CustomElementRegistry.h" 40 40 #include "DOMRect.h" 41 #include "DOMRectList.h" 41 42 #include "DOMTokenList.h" 42 43 #include "DocumentAnimation.h" … … 1145 1146 } 1146 1147 1147 Vector<Ref<DOMRect>> Element::getClientRects()1148 Ref<DOMRectList> Element::getClientRects() 1148 1149 { 1149 1150 document().updateLayoutIgnorePendingStylesheets(); … … 1151 1152 RenderBoxModelObject* renderBoxModelObject = this->renderBoxModelObject(); 1152 1153 if (!renderBoxModelObject) 1153 return { };1154 return DOMRectList::create(); 1154 1155 1155 1156 // FIXME: Handle SVG elements. … … 1159 1160 renderBoxModelObject->absoluteQuads(quads); 1160 1161 document().convertAbsoluteToClientQuads(quads, renderBoxModelObject->style()); 1161 return createDOMRectVector(quads);1162 return DOMRectList::create(quads); 1162 1163 } 1163 1164 -
trunk/Source/WebCore/dom/Element.h
r216426 r217576 41 41 class DatasetDOMStringMap; 42 42 class DOMRect; 43 class DOMRectList; 43 44 class DOMTokenList; 44 45 class ElementRareData; … … 173 174 WEBCORE_EXPORT IntRect boundsInRootViewSpace(); 174 175 175 Vector<Ref<DOMRect>> getClientRects();176 Ref<DOMRectList> getClientRects(); 176 177 Ref<DOMRect> getBoundingClientRect(); 177 178 -
trunk/Source/WebCore/dom/Element.idl
r217108 r217576 69 69 70 70 // CSSOM-view extensions (https://drafts.csswg.org/cssom-view/#extension-to-the-element-interface). 71 sequence<DOMRect>getClientRects();71 DOMRectList getClientRects(); 72 72 [NewObject] DOMRect getBoundingClientRect(); 73 73 void scrollIntoView(optional boolean alignWithTop = true); // FIXME: Parameter type should be (boolean or object). -
trunk/Source/WebCore/dom/Range.cpp
r216803 r217576 28 28 #include "Comment.h" 29 29 #include "DOMRect.h" 30 #include "DOMRectList.h" 30 31 #include "DocumentFragment.h" 31 32 #include "Editing.h" … … 1763 1764 } 1764 1765 1765 Vector<Ref<DOMRect>> Range::getClientRects() const1766 { 1767 return createDOMRectVector(borderAndTextQuads(CoordinateSpace::Client));1766 Ref<DOMRectList> Range::getClientRects() const 1767 { 1768 return DOMRectList::create(borderAndTextQuads(CoordinateSpace::Client)); 1768 1769 } 1769 1770 -
trunk/Source/WebCore/dom/Range.h
r215946 r217576 35 35 namespace WebCore { 36 36 37 class ContainerNode; 37 38 class DOMRect; 38 class ContainerNode;39 class DOMRectList; 39 40 class Document; 40 41 class DocumentFragment; … … 142 143 WEBCORE_EXPORT ExceptionOr<void> expand(const String&); 143 144 144 Vector<Ref<DOMRect>> getClientRects() const;145 Ref<DOMRectList> getClientRects() const; 145 146 Ref<DOMRect> getBoundingClientRect() const; 146 147 -
trunk/Source/WebCore/dom/Range.idl
r216339 r217576 65 65 66 66 // Extensions from CSSOM-view (https://drafts.csswg.org/cssom-view/#extensions-to-the-range-interface). 67 sequence<DOMRect>getClientRects();67 DOMRectList getClientRects(); 68 68 [NewObject] DOMRect getBoundingClientRect(); 69 69 -
trunk/Source/WebCore/page/Page.cpp
r217348 r217576 33 33 #include "ContextMenuController.h" 34 34 #include "DOMRect.h" 35 #include "DOMRectList.h" 35 36 #include "DatabaseProvider.h" 36 37 #include "DiagnosticLoggingClient.h" … … 406 407 } 407 408 408 Vector<Ref<DOMRect>> Page::nonFastScrollableRects()409 Ref<DOMRectList> Page::nonFastScrollableRects() 409 410 { 410 411 if (Document* document = m_mainFrame->document()) … … 422 423 quads[i] = FloatRect(rects[i]); 423 424 424 return createDOMRectVector(quads);425 } 426 427 Vector<Ref<DOMRect>> Page::touchEventRectsForEvent(const String& eventName)425 return DOMRectList::create(quads); 426 } 427 428 Ref<DOMRectList> Page::touchEventRectsForEvent(const String& eventName) 428 429 { 429 430 if (Document* document = m_mainFrame->document()) { … … 445 446 quads[i] = FloatRect(rects[i]); 446 447 447 return createDOMRectVector(quads);448 } 449 450 Vector<Ref<DOMRect>> Page::passiveTouchEventListenerRects()448 return DOMRectList::create(quads); 449 } 450 451 Ref<DOMRectList> Page::passiveTouchEventListenerRects() 451 452 { 452 453 if (Document* document = m_mainFrame->document()) { … … 465 466 quads[i] = FloatRect(rects[i]); 466 467 467 return createDOMRectVector(quads);468 return DOMRectList::create(quads); 468 469 } 469 470 -
trunk/Source/WebCore/page/Page.h
r216902 r217576 86 86 class ContextMenuController; 87 87 class DOMRect; 88 class DOMRectList; 88 89 class DatabaseProvider; 89 90 class DiagnosticLoggingClient; … … 239 240 WEBCORE_EXPORT String scrollingStateTreeAsText(); 240 241 WEBCORE_EXPORT String synchronousScrollingReasonsAsText(); 241 WEBCORE_EXPORT Vector<Ref<DOMRect>> nonFastScrollableRects();242 243 WEBCORE_EXPORT Vector<Ref<DOMRect>> touchEventRectsForEvent(const String& eventName);244 WEBCORE_EXPORT Vector<Ref<DOMRect>> passiveTouchEventListenerRects();242 WEBCORE_EXPORT Ref<DOMRectList> nonFastScrollableRects(); 243 244 WEBCORE_EXPORT Ref<DOMRectList> touchEventRectsForEvent(const String& eventName); 245 WEBCORE_EXPORT Ref<DOMRectList> passiveTouchEventListenerRects(); 245 246 246 247 Settings& settings() const { return *m_settings; } -
trunk/Source/WebCore/testing/Internals.cpp
r217562 r217576 45 45 #include "DOMPath.h" 46 46 #include "DOMRect.h" 47 #include "DOMRectList.h" 47 48 #include "DOMStringList.h" 48 49 #include "DOMWindow.h" … … 1363 1364 } 1364 1365 1365 ExceptionOr< Vector<Ref<DOMRect>>> Internals::inspectorHighlightRects()1366 ExceptionOr<Ref<DOMRectList>> Internals::inspectorHighlightRects() 1366 1367 { 1367 1368 Document* document = contextDocument(); … … 1371 1372 Highlight highlight; 1372 1373 document->page()->inspectorController().getHighlight(highlight, InspectorOverlay::CoordinateSystem::View); 1373 return createDOMRectVector(highlight.quads);1374 return DOMRectList::create(highlight.quads); 1374 1375 } 1375 1376 … … 1807 1808 } 1808 1809 1809 ExceptionOr< Vector<Ref<DOMRect>>> Internals::touchEventRectsForEvent(const String& eventName)1810 ExceptionOr<Ref<DOMRectList>> Internals::touchEventRectsForEvent(const String& eventName) 1810 1811 { 1811 1812 Document* document = contextDocument(); … … 1816 1817 } 1817 1818 1818 ExceptionOr< Vector<Ref<DOMRect>>> Internals::passiveTouchEventListenerRects()1819 ExceptionOr<Ref<DOMRectList>> Internals::passiveTouchEventListenerRects() 1819 1820 { 1820 1821 Document* document = contextDocument(); … … 2338 2339 } 2339 2340 2340 ExceptionOr< Vector<Ref<DOMRect>>> Internals::nonFastScrollableRects() const2341 ExceptionOr<Ref<DOMRectList>> Internals::nonFastScrollableRects() const 2341 2342 { 2342 2343 Document* document = contextDocument(); … … 2346 2347 Page* page = document->page(); 2347 2348 if (!page) 2348 return Vector<Ref<DOMRect>> { };2349 return DOMRectList::create(); 2349 2350 2350 2351 return page->nonFastScrollableRects(); -
trunk/Source/WebCore/testing/Internals.h
r217562 r217576 45 45 class AudioContext; 46 46 class DOMRect; 47 class DOMRectList; 47 48 class DOMURL; 48 49 class DOMWindow; … … 185 186 Ref<DOMRect> boundingBox(Element&); 186 187 187 ExceptionOr< Vector<Ref<DOMRect>>> inspectorHighlightRects();188 ExceptionOr<Ref<DOMRectList>> inspectorHighlightRects(); 188 189 ExceptionOr<String> inspectorHighlightObject(); 189 190 … … 245 246 ExceptionOr<unsigned> touchEventHandlerCount(); 246 247 247 ExceptionOr< Vector<Ref<DOMRect>>> touchEventRectsForEvent(const String&);248 ExceptionOr< Vector<Ref<DOMRect>>> passiveTouchEventListenerRects();248 ExceptionOr<Ref<DOMRectList>> touchEventRectsForEvent(const String&); 249 ExceptionOr<Ref<DOMRectList>> passiveTouchEventListenerRects(); 249 250 250 251 ExceptionOr<RefPtr<NodeList>> nodesFromRect(Document&, int x, int y, unsigned topPadding, unsigned rightPadding, unsigned bottomPadding, unsigned leftPadding, bool ignoreClipping, bool allowShadowContent, bool allowChildFrameContent) const; … … 300 301 ExceptionOr<String> scrollingStateTreeAsText() const; 301 302 ExceptionOr<String> mainThreadScrollingReasons() const; 302 ExceptionOr< Vector<Ref<DOMRect>>> nonFastScrollableRects() const;303 ExceptionOr<Ref<DOMRectList>> nonFastScrollableRects() const; 303 304 304 305 ExceptionOr<void> setElementUsesDisplayListDrawing(Element&, bool usesDisplayListDrawing); -
trunk/Source/WebCore/testing/Internals.idl
r217562 r217576 154 154 DOMRect boundingBox(Element element); 155 155 156 [MayThrowException] sequence<DOMRect>inspectorHighlightRects();156 [MayThrowException] DOMRectList inspectorHighlightRects(); 157 157 [MayThrowException] DOMString inspectorHighlightObject(); 158 158 … … 217 217 [MayThrowException] unsigned long touchEventHandlerCount(); 218 218 219 [MayThrowException] sequence<DOMRect>touchEventRectsForEvent(DOMString eventName);220 [MayThrowException] sequence<DOMRect>passiveTouchEventListenerRects();219 [MayThrowException] DOMRectList touchEventRectsForEvent(DOMString eventName); 220 [MayThrowException] DOMRectList passiveTouchEventListenerRects(); 221 221 222 222 [MayThrowException] NodeList? nodesFromRect(Document document, long x, long y, … … 275 275 [MayThrowException] DOMString scrollingStateTreeAsText(); 276 276 [MayThrowException] DOMString mainThreadScrollingReasons(); // FIXME: rename to synchronousScrollingReasons(). 277 [MayThrowException] sequence<DOMRect>nonFastScrollableRects();277 [MayThrowException] DOMRectList nonFastScrollableRects(); 278 278 279 279 [MayThrowException] DOMString repaintRectsAsText(); -
trunk/Source/WebKit2/ChangeLog
r217571 r217576 1 2017-05-30 Chris Dumez <cdumez@apple.com> 2 3 REGRESSION(r215946): Can't reference a table cell in Google spreadsheet 4 https://bugs.webkit.org/show_bug.cgi?id=172703 5 <rdar://problem/32458086> 6 7 Reviewed by Ryosuke Niwa. 8 9 Fix GObject bindings accordingly. 10 11 * WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMClientRectList.cpp: 12 (WebKit::kit): 13 (WebKit::core): 14 (WebKit::wrapDOMRectList): 15 (webkit_dom_client_rect_list_constructed): 16 (webkit_dom_client_rect_list_item): 17 (webkit_dom_client_rect_list_get_length): 18 * WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMClientRectListPrivate.h: 19 * WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMElement.cpp: 20 (webkit_dom_element_get_client_rects): 21 1 22 2017-05-30 Daniel Bates <dabates@apple.com> 2 23 -
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMClientRectList.cpp
r216005 r217576 36 36 #define WEBKIT_DOM_CLIENT_RECT_LIST_GET_PRIVATE(obj) G_TYPE_INSTANCE_GET_PRIVATE(obj, WEBKIT_DOM_TYPE_CLIENT_RECT_LIST, WebKitDOMClientRectListPrivate) 37 37 38 class ClientRectList : public RefCounted<ClientRectList> {39 public:40 static Ref<ClientRectList> create(WTF::Vector<Ref<WebCore::DOMRect>>&& items)41 {42 return adoptRef(*new ClientRectList(WTFMove(items)));43 }44 45 const WTF::Vector<Ref<WebCore::DOMRect>>& items() const { return m_items; }46 47 private:48 ClientRectList(WTF::Vector<Ref<WebCore::DOMRect>>&& items)49 : m_items(WTFMove(items))50 { }51 52 WTF::Vector<Ref<WebCore::DOMRect>> m_items;53 };54 55 38 typedef struct _WebKitDOMClientRectListPrivate { 56 RefPtr< ClientRectList> coreObject;39 RefPtr<WebCore::DOMRectList> coreObject; 57 40 } WebKitDOMClientRectListPrivate; 58 41 59 42 namespace WebKit { 60 43 61 WebKitDOMClientRectList* kit(W TF::Vector<Ref<WebCore::DOMRect>>&&obj)44 WebKitDOMClientRectList* kit(WebCore::DOMRectList* obj) 62 45 { 63 return wrapClientRectList(WTFMove(obj)); 46 if (!obj) 47 return nullptr; 48 49 if (gpointer ret = DOMObjectCache::get(obj)) 50 return WEBKIT_DOM_CLIENT_RECT_LIST(ret); 51 52 return wrapDOMRectList(obj); 64 53 } 65 54 66 static ClientRectList* core(WebKitDOMClientRectList* request)55 WebCore::DOMRectList* core(WebKitDOMClientRectList* request) 67 56 { 68 return request ? static_cast< ClientRectList*>(WEBKIT_DOM_OBJECT(request)->coreObject) : nullptr;57 return request ? static_cast<WebCore::DOMRectList*>(WEBKIT_DOM_OBJECT(request)->coreObject) : nullptr; 69 58 } 70 59 71 WebKitDOMClientRectList* wrap ClientRectList(WTF::Vector<Ref<WebCore::DOMRect>>&&coreObject)60 WebKitDOMClientRectList* wrapDOMRectList(WebCore::DOMRectList* coreObject) 72 61 { 73 auto list = ClientRectList::create(WTFMove(coreObject)); 74 return WEBKIT_DOM_CLIENT_RECT_LIST(g_object_new(WEBKIT_DOM_TYPE_CLIENT_RECT_LIST, "core-object", list.ptr(), nullptr)); 62 return WEBKIT_DOM_CLIENT_RECT_LIST(g_object_new(WEBKIT_DOM_TYPE_CLIENT_RECT_LIST, "core-object", coreObject, nullptr)); 75 63 } 76 64 … … 113 101 114 102 WebKitDOMClientRectListPrivate* priv = WEBKIT_DOM_CLIENT_RECT_LIST_GET_PRIVATE(object); 115 priv->coreObject = static_cast<ClientRectList*>(WEBKIT_DOM_OBJECT(object)->coreObject); 103 priv->coreObject = static_cast<WebCore::DOMRectList*>(WEBKIT_DOM_OBJECT(object)->coreObject); 104 WebKit::DOMObjectCache::put(priv->coreObject.get(), object); 116 105 } 117 106 … … 146 135 WebCore::JSMainThreadNullState state; 147 136 g_return_val_if_fail(WEBKIT_DOM_IS_CLIENT_RECT_LIST(self), nullptr); 148 auto & list = WebKit::core(self)->items();149 RefPtr<WebCore::DOMRect> gobjectResult = index >= list.size() ? nullptr : list[index].ptr();137 auto* list = WebKit::core(self); 138 RefPtr<WebCore::DOMRect> gobjectResult = WTF::getPtr(list->item(index)); 150 139 return WebKit::kit(gobjectResult.get()); 151 140 } … … 155 144 WebCore::JSMainThreadNullState state; 156 145 g_return_val_if_fail(WEBKIT_DOM_IS_CLIENT_RECT_LIST(self), 0); 157 return WebKit::core(self)-> items().size();146 return WebKit::core(self)->length(); 158 147 } -
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMClientRectListPrivate.h
r216002 r217576 20 20 #pragma once 21 21 22 #include <WebCore/DOMRect .h>22 #include <WebCore/DOMRectList.h> 23 23 #include <webkitdom/WebKitDOMClientRectList.h> 24 #include <wtf/Vector.h>25 24 26 25 namespace WebKit { 27 WebKitDOMClientRectList* wrapClientRectList(WTF::Vector<Ref<WebCore::DOMRect>>&&); 28 WebKitDOMClientRectList* kit(WTF::Vector<Ref<WebCore::DOMRect>>&&); 26 WebKitDOMClientRectList* wrapDOMRectList(WebCore::DOMRectList*); 27 WebKitDOMClientRectList* kit(WebCore::DOMRectList*); 28 WebCore::DOMRectList* core(WebKitDOMClientRectList*); 29 29 } // namespace WebKit -
trunk/Source/WebKit2/WebProcess/InjectedBundle/API/gtk/DOM/WebKitDOMElement.cpp
r216426 r217576 1240 1240 g_return_val_if_fail(WEBKIT_DOM_IS_ELEMENT(self), nullptr); 1241 1241 WebCore::Element* item = WebKit::core(self); 1242 return WebKit::kit(item->getClientRects() );1242 return WebKit::kit(item->getClientRects().ptr()); 1243 1243 } 1244 1244
Note:
See TracChangeset
for help on using the changeset viewer.