RESOLVED FIXED 172703
REGRESSION(r215946): Can't reference a table cell in Google spreadsheet
https://bugs.webkit.org/show_bug.cgi?id=172703
Summary REGRESSION(r215946): Can't reference a table cell in Google spreadsheet
Ryosuke Niwa
Reported 2017-05-29 23:42:25 PDT
Reproduction steps: 1. Go to drive.google.com 2. Create a new Google spreadsheet or open an existing one 3. Click on one of the cells and type in = and then click another cell to reference it. 4. Press enter. Result: Google spreadsheet shows "Unable to load file" as an error.
Attachments
WIP Patch (26.35 KB, patch)
2017-05-30 12:20 PDT, Chris Dumez
no flags
WIP Patch (30.64 KB, patch)
2017-05-30 12:41 PDT, Chris Dumez
no flags
WIP Patch (36.04 KB, patch)
2017-05-30 13:03 PDT, Chris Dumez
no flags
WIP Patch (36.83 KB, patch)
2017-05-30 13:13 PDT, Chris Dumez
no flags
Patch (48.99 KB, patch)
2017-05-30 13:34 PDT, Chris Dumez
no flags
Ryosuke Niwa
Comment 1 2017-05-29 23:42:37 PDT
Observed on STP30.
Ryosuke Niwa
Comment 2 2017-05-29 23:43:49 PDT
In the console, I see the error: CustomError: Error in protected function: a.item is not a function. (In 'a.item(0)', 'a.item' is undefined)
Radar WebKit Bug Importer
Comment 3 2017-05-29 23:44:58 PDT
Ryosuke Niwa
Comment 4 2017-05-30 10:29:01 PDT
Bisected to http://trac.webkit.org/log/trunk/?mode=follow_copy&rev=215947&stop_rev=215945 It must be https://trac.webkit.org/changeset/215946/webkit given the error: CustomError: Error in protected function: a.item is not a function. (In 'a.item(0)', 'a.item' is undefined) This change was probably not compatible with the Web. I bet there is thousands of other web pages that rely on .item(~) call.
Chris Dumez
Comment 5 2017-05-30 10:32:37 PDT
Will look into this today.
Chris Dumez
Comment 6 2017-05-30 10:45:11 PDT
Yes, ClientRectList had an item() method, which is missing from the new DOMRect[] type that is returned by getClientRects() in the spec. I'll looks into the Google spreadsheet code a little but it looks to me that the specification is not WebCompatible and we may need to reintroduce a DOMRectList type :(
Chris Dumez
Comment 7 2017-05-30 10:50:16 PDT
For now, I am unable to reproduce with WebKit ToT. Will try some more.
Chris Dumez
Comment 8 2017-05-30 10:52:20 PDT
Ok, got it: function Epb(a) { Dpb(a); a = xpb(a).Pq().getClientRects(); return { first: a.item(0), nV: a.item(a.length - 1) } } in https://docs.google.com/static/spreadsheets2/client/js/2594367115-ritz_waffle_i18n_core.js
Chris Dumez
Comment 9 2017-05-30 11:00:02 PDT
(In reply to Chris Dumez from comment #8) > Ok, got it: > function Epb(a) { > Dpb(a); > a = xpb(a).Pq().getClientRects(); > return { > first: a.item(0), > nV: a.item(a.length - 1) > } > } > > in > https://docs.google.com/static/spreadsheets2/client/js/2594367115- > ritz_waffle_i18n_core.js Filed https://github.com/w3c/csswg-drafts/issues/1479 against the specification. Will now re-introduce a List type in WebKit to fix Google Speadsheet.
Chris Dumez
Comment 10 2017-05-30 12:20:25 PDT
Created attachment 311527 [details] WIP Patch
Chris Dumez
Comment 11 2017-05-30 12:41:58 PDT
Created attachment 311529 [details] WIP Patch
Chris Dumez
Comment 12 2017-05-30 13:03:47 PDT
Created attachment 311532 [details] WIP Patch
Chris Dumez
Comment 13 2017-05-30 13:13:29 PDT
Created attachment 311533 [details] WIP Patch
Chris Dumez
Comment 14 2017-05-30 13:34:20 PDT
Ryosuke Niwa
Comment 15 2017-05-30 13:39:54 PDT
Comment on attachment 311539 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=311539&action=review > Source/WebCore/dom/DOMRectList.idl:33 > +] interface DOMRectList { > + readonly attribute unsigned long length; > + getter DOMRect item(unsigned long index); > +}; Huh, this doesn't have an indexed getter!? No wonder Google docs is using item to access each item.
Chris Dumez
Comment 16 2017-05-30 13:58:37 PDT
Comment on attachment 311539 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=311539&action=review >> Source/WebCore/dom/DOMRectList.idl:33 >> +}; > > Huh, this doesn't have an indexed getter!? No wonder Google docs is using item to access each item. This is an indexed getter: getter DOMRect item(unsigned long index);
Chris Dumez
Comment 17 2017-05-30 14:19:34 PDT
Note You need to log in before you can comment on or make changes to this bug.