WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
92942
Add DeviceProximityEvent interface
https://bugs.webkit.org/show_bug.cgi?id=92942
Summary
Add DeviceProximityEvent interface
Kihong Kwon
Reported
2012-08-01 22:16:01 PDT
Add DeviceProximityEvent interface. And add onwebkitdeviceproximity event handler to the DOMWindow.
Attachments
Patch
(19.03 KB, patch)
2012-08-01 23:31 PDT
,
Kihong Kwon
no flags
Details
Formatted Diff
Diff
Patch
(18.30 KB, patch)
2012-08-01 23:55 PDT
,
Kihong Kwon
no flags
Details
Formatted Diff
Diff
Patch
(36.48 KB, patch)
2012-08-06 01:27 PDT
,
Kihong Kwon
no flags
Details
Formatted Diff
Diff
Patch
(35.57 KB, patch)
2012-08-06 02:28 PDT
,
Kihong Kwon
haraken
: review+
haraken
: commit-queue-
Details
Formatted Diff
Diff
patch for landing.
(34.19 KB, patch)
2012-08-06 02:48 PDT
,
Kihong Kwon
no flags
Details
Formatted Diff
Diff
Archive of layout-test-results from gce-cr-linux-01
(437.39 KB, application/zip)
2012-08-06 03:42 PDT
,
WebKit Review Bot
no flags
Details
patch for landing.
(34.22 KB, patch)
2012-08-06 04:10 PDT
,
Kihong Kwon
no flags
Details
Formatted Diff
Diff
Show Obsolete
(5)
View All
Add attachment
proposed patch, testcase, etc.
Kihong Kwon
Comment 1
2012-08-01 23:31:12 PDT
Created
attachment 155981
[details]
Patch
Kihong Kwon
Comment 2
2012-08-01 23:55:18 PDT
Created
attachment 155985
[details]
Patch
Adam Barth
Comment 3
2012-08-02 08:05:45 PDT
Looks like the spec is here:
http://www.w3.org/TR/proximity/#idl-def-DeviceProximityEvent
Kentaro Hara
Comment 4
2012-08-02 19:11:02 PDT
Comment on
attachment 155985
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=155985&action=review
WebCore implementation looks good. Marking r- due to insufficient tests.
> Source/WebCore/ChangeLog:9 > + Add DeviceProximityEvent interface of Proximity Events. > + And add onwebkitdeviceproximity event handler to the DOMWindow.
Please add the spec link to the ChangeLog.
> Source/WebCore/Modules/proximity/DeviceProximityEvent.h:45 > + return adoptRef(new DeviceProximityEvent);
Nit: new DeviceProximityEvent()
> LayoutTests/ChangeLog:8 > + Add a test case to create DeviceProximityEvent and to check onwebkitdeviceproximity.
- Let's add test cases for constructor. Look at tests under fast/events/constructors/. Let's add fast/events/constructors/device-proximity-event.html - Can you test if the DeviceProximityEvent bubbles up correctly?
Kihong Kwon
Comment 5
2012-08-06 01:27:41 PDT
Created
attachment 156618
[details]
Patch
Kihong Kwon
Comment 6
2012-08-06 01:30:06 PDT
Comment on
attachment 155985
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=155985&action=review
>> Source/WebCore/Modules/proximity/DeviceProximityEvent.h:45 >> + return adoptRef(new DeviceProximityEvent); > > Nit: new DeviceProximityEvent()
OK.
>> LayoutTests/ChangeLog:8 >> + Add a test case to create DeviceProximityEvent and to check onwebkitdeviceproximity. > > - Let's add test cases for constructor. Look at tests under fast/events/constructors/. Let's add fast/events/constructors/device-proximity-event.html > > - Can you test if the DeviceProximityEvent bubbles up correctly?
OK, I added a test case for constructor.
Kentaro Hara
Comment 7
2012-08-06 01:41:20 PDT
Comment on
attachment 156618
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=156618&action=review
> LayoutTests/fast/dom/Proximity/check-event-deviceproximity.html:9 > +<script src="script-tests/check-event-deviceproximity.js"></script>
Nit: You can directly write JavaScript here.
> LayoutTests/fast/dom/Proximity/create-event-deviceproximity.html:9 > +<script src="script-tests/create-event-deviceproximity.js"></script>
Ditto.
> LayoutTests/fast/events/constructors/device-proximity-event-constructor.html:14 > +shouldBe("new DeviceProximityEvent('eventType').bubbles", "false");
Isn't this true?
Kihong Kwon
Comment 8
2012-08-06 02:28:36 PDT
Created
attachment 156632
[details]
Patch
Kihong Kwon
Comment 9
2012-08-06 02:35:48 PDT
Comment on
attachment 156618
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=156618&action=review
>> LayoutTests/fast/dom/Proximity/check-event-deviceproximity.html:9 >> +<script src="script-tests/check-event-deviceproximity.js"></script> > > Nit: You can directly write JavaScript here.
Changed it.
>> LayoutTests/fast/dom/Proximity/create-event-deviceproximity.html:9 >> +<script src="script-tests/create-event-deviceproximity.js"></script> > > Ditto.
ditto.
>> LayoutTests/fast/events/constructors/device-proximity-event-constructor.html:14 >> +shouldBe("new DeviceProximityEvent('eventType').bubbles", "false"); > > Isn't this true?
You are right. It's fixed.
Kentaro Hara
Comment 10
2012-08-06 02:36:11 PDT
Comment on
attachment 156632
[details]
Patch View in context:
https://bugs.webkit.org/attachment.cgi?id=156632&action=review
Looks OK. Sorry for the iterative comments. A couple of nits in your test.
> LayoutTests/fast/dom/Proximity/create-event-deviceproximity.html:14 > + document.getElementById('result').innerHTML = "PASS";
Nit: you could use testPassed()
> LayoutTests/fast/dom/Proximity/create-event-deviceproximity.html:24 > + document.getElementById('result').innerHTML = "FAIL... deviceproximity event doesn't appear to be enabled or implemented.";
Nit: you could use testFailed()
Kihong Kwon
Comment 11
2012-08-06 02:48:02 PDT
Comment on
attachment 156632
[details]
Patch No problem. Thank you :)
Kihong Kwon
Comment 12
2012-08-06 02:48:52 PDT
Created
attachment 156640
[details]
patch for landing.
WebKit Review Bot
Comment 13
2012-08-06 03:42:08 PDT
Comment on
attachment 156632
[details]
Patch
Attachment 156632
[details]
did not pass chromium-ews (chromium-xvfb): Output:
http://queues.webkit.org/results/13447242
New failing tests: fast/events/constructors/device-proximity-event-constructor.html
WebKit Review Bot
Comment 14
2012-08-06 03:42:14 PDT
Created
attachment 156648
[details]
Archive of layout-test-results from gce-cr-linux-01 The attached test failures were seen while running run-webkit-tests on the chromium-ews. Bot: gce-cr-linux-01 Port: <class 'webkitpy.common.config.ports.ChromiumXVFBPort'> Platform: Linux-2.6.39-gcg-201203291735-x86_64-with-Ubuntu-10.04-lucid
Kihong Kwon
Comment 15
2012-08-06 04:10:19 PDT
Created
attachment 156652
[details]
patch for landing.
WebKit Review Bot
Comment 16
2012-08-06 06:04:21 PDT
Comment on
attachment 156652
[details]
patch for landing. Clearing flags on attachment: 156652 Committed
r124759
: <
http://trac.webkit.org/changeset/124759
>
WebKit Review Bot
Comment 17
2012-08-06 06:04:28 PDT
All reviewed patches have been landed. Closing bug.
Lucas Forschler
Comment 18
2019-02-06 09:18:39 PST
Mass move bugs into the DOM component.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug