Changeset 276585 in webkit
- Timestamp:
- Apr 26, 2021, 3:56:01 AM (4 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/imported/w3c/ChangeLog
r276584 r276585 1 2021-04-26 Ryosuke Niwa <rniwa@webkit.org> 2 3 Implement ShadowRoot.prototype.delegatesFocus attribute 4 https://bugs.webkit.org/show_bug.cgi?id=224805 5 6 Reviewed by Antti Koivisto. 7 8 Rebaselined now that test casses are passing. 9 10 * web-platform-tests/shadow-dom/focus/ShadowRoot-delegatesFocus-expected.txt: 11 1 12 2021-04-25 Ryosuke Niwa <rniwa@webkit.org> 2 13 -
trunk/LayoutTests/imported/w3c/web-platform-tests/shadow-dom/focus/ShadowRoot-delegatesFocus-expected.txt
r276584 r276585 1 1 2 FAIL default delegatesFocus value assert_equals: expected (boolean) false but got (undefined) undefined 3 FAIL delegatesFocus set to false in init dict assert_equals: expected (boolean) false but got (undefined) undefined 4 FAIL delegatesFocus set to true in init dict assert_equals: expected (boolean) true but got (undefined) undefined 2 PASS default delegatesFocus value 3 PASS delegatesFocus set to false in init dict 4 PASS delegatesFocus set to true in init dict 5 5 -
trunk/Source/WebCore/ChangeLog
r276582 r276585 1 2021-04-26 Ryosuke Niwa <rniwa@webkit.org> 2 3 Implement ShadowRoot.prototype.delegatesFocus attribute 4 https://bugs.webkit.org/show_bug.cgi?id=224805 5 6 Reviewed by Antti Koivisto. 7 8 Added the IDL attribute. Chrome had supported this IDL attribute for ages. 9 10 Test: imported/w3c/web-platform-tests/shadow-dom/focus/ShadowRoot-delegatesFocus.html 11 12 * dom/ShadowRoot.idl: 13 1 14 2021-04-26 Carlos Garcia Campos <cgarcia@igalia.com> 2 15 -
trunk/Source/WebCore/dom/ShadowRoot.idl
r267939 r276585 29 29 ] interface ShadowRoot : DocumentFragment { 30 30 readonly attribute ShadowRootMode mode; 31 readonly attribute boolean delegatesFocus; 31 32 readonly attribute Element host; 32 33 attribute EventHandler onslotchange;
Note:
See TracChangeset
for help on using the changeset viewer.