|
@@ -0,0 +1,86 @@
|
|
|
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
+From: Aaron Leventhal <[email protected]>
|
|
|
+Date: Sat, 27 Jan 2024 04:15:37 +0000
|
|
|
+Subject: Ensure old children of objects that become leaves are cleared
|
|
|
+
|
|
|
+Fixed: 1520335
|
|
|
+Change-Id: I9cd2fa6bfbb59d43318b7b378e4267c53e139f97
|
|
|
+Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5238389
|
|
|
+Commit-Queue: Chris Harrelson <[email protected]>
|
|
|
+Auto-Submit: Aaron Leventhal <[email protected]>
|
|
|
+Reviewed-by: Chris Harrelson <[email protected]>
|
|
|
+Cr-Commit-Position: refs/heads/main@{#1252998}
|
|
|
+
|
|
|
+diff --git a/third_party/blink/renderer/modules/accessibility/ax_node_object.cc b/third_party/blink/renderer/modules/accessibility/ax_node_object.cc
|
|
|
+index 15a7ced45e36c76d6f2a7e6736e9ea3c1fd69cff..a94e88e79c4fb5ed1336a776eafe3e302f5d50f8 100644
|
|
|
+--- a/third_party/blink/renderer/modules/accessibility/ax_node_object.cc
|
|
|
++++ b/third_party/blink/renderer/modules/accessibility/ax_node_object.cc
|
|
|
+@@ -4599,15 +4599,7 @@ void AXNodeObject::AddChildrenImpl() {
|
|
|
+ }
|
|
|
+
|
|
|
+ CHECK(NeedsToUpdateChildren());
|
|
|
+-
|
|
|
+- if (!CanHaveChildren()) {
|
|
|
+- // TODO(crbug.com/1407397): Make sure this is no longer firing then
|
|
|
+- // transform this block to CHECK(CanHaveChildren());
|
|
|
+- DUMP_WILL_BE_NOTREACHED_NORETURN()
|
|
|
+- << "Should not reach AddChildren() if CanHaveChildren() is false.\n"
|
|
|
+- << ToString(true, true);
|
|
|
+- return;
|
|
|
+- }
|
|
|
++ CHECK(CanHaveChildren());
|
|
|
+
|
|
|
+ if (ShouldLoadInlineTextBoxes() && HasLayoutText(this)) {
|
|
|
+ AddInlineTextBoxChildren();
|
|
|
+diff --git a/third_party/blink/renderer/modules/accessibility/ax_object.cc b/third_party/blink/renderer/modules/accessibility/ax_object.cc
|
|
|
+index 39e950c537266783f64df29fe4460a01f4a8dbcc..c465d53e8728e0cd8b3d936e50c16f1973073fa6 100644
|
|
|
+--- a/third_party/blink/renderer/modules/accessibility/ax_object.cc
|
|
|
++++ b/third_party/blink/renderer/modules/accessibility/ax_object.cc
|
|
|
+@@ -5761,16 +5761,19 @@ void AXObject::UpdateChildrenIfNecessary() {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+- if (!CanHaveChildren()) {
|
|
|
+- SetNeedsToUpdateChildren(false);
|
|
|
+- return;
|
|
|
+- }
|
|
|
+-
|
|
|
+ CHECK(!AXObjectCache().IsFrozen())
|
|
|
+ << "Object should have already had its children updated in "
|
|
|
+ "AXObjectCacheImpl::UpdateTreeIfNeeded(): "
|
|
|
+ << ToString(true, true);
|
|
|
+
|
|
|
++ if (!CanHaveChildren()) {
|
|
|
++ // Clear any children in case the node previously allowed children.
|
|
|
++ ClearChildren();
|
|
|
++ SetNeedsToUpdateChildren(false);
|
|
|
++ child_cached_values_need_update_ = false;
|
|
|
++ return;
|
|
|
++ }
|
|
|
++
|
|
|
+ UpdateCachedAttributeValuesIfNeeded();
|
|
|
+
|
|
|
+ ClearChildren();
|
|
|
+diff --git a/third_party/blink/web_tests/external/wpt/accessibility/crashtests/inert-br-child.html b/third_party/blink/web_tests/external/wpt/accessibility/crashtests/inert-br-child.html
|
|
|
+new file mode 100644
|
|
|
+index 0000000000000000000000000000000000000000..9c9039c3abac39b10c730a75221a1752910d0ded
|
|
|
+--- /dev/null
|
|
|
++++ b/third_party/blink/web_tests/external/wpt/accessibility/crashtests/inert-br-child.html
|
|
|
+@@ -0,0 +1,17 @@
|
|
|
++<!DOCTYPE html>
|
|
|
++<!-- Test for crash when inert br gains illegal child -->
|
|
|
++<html>
|
|
|
++<dialog></dialog>
|
|
|
++<br>
|
|
|
++
|
|
|
++<script>
|
|
|
++requestAnimationFrame(() => {
|
|
|
++ requestAnimationFrame(() => {
|
|
|
++ document.querySelector('dialog').showModal();
|
|
|
++ const br = document.querySelector('br');
|
|
|
++ br.appendChild(document.createElement('fieldset'));
|
|
|
++ });
|
|
|
++});
|
|
|
++</script>
|
|
|
++
|
|
|
++</html>
|