[web] switch to SemanticsAction.focus (attempt 3) (#53689)

This relands https://github.com/flutter/engine/pull/53679.

The difference from the previous attempt is in the last commit, which prevents synthetic focus requests from echoing back into the framework. That part broke too many tests in g3 and needs to be revisited.

## Original description

Stop using `SemanticsAction.didGain/LoseAccessibilityFocus` on the web, start using `SemanticsAction.focus`. This is because on the web, a11y focus is not observable, only input focus is. Sending `SemanticsAction.focus` will guarantee that the framework move focus to the respective widget. There currently is no "unfocus" signal, because it seems to be already covered: either another widget gains focus, or an HTML DOM element outside the Flutter view does, both of which have their respective signals already.

More details in the discussion in the issue https://github.com/flutter/flutter/issues/83809.

Fixes https://github.com/flutter/flutter/issues/83809
Fixes https://github.com/flutter/flutter/issues/148285
Fixes https://github.com/flutter/flutter/issues/143337
https://dart.googlesource.com/external/github.com/flutter/engine/+/f008c51792983708796cff74f06649f797a465c7
diff --git a/DEPS b/DEPS
index d7aadf8..a8fd8f8 100644
--- a/DEPS
+++ b/DEPS
@@ -280,7 +280,7 @@
 deps = {
   'engine/src': 'https://github.com/flutter/buildroot.git' + '@' + 'e265c359126b24351f534080fb22edaa159f2215',
 
-  'engine/src/flutter': Var('flutter_git') + '/mirrors/engine' + '@' + '60ed067dd8cbe7c5300b0d3f768d75e3e2a0db23',
+  'engine/src/flutter': Var('flutter_git') + '/mirrors/engine' + '@' + 'f008c51792983708796cff74f06649f797a465c7',
 
   'engine/src/flutter/third_party/dart': Var('dart_git') + '/sdk' + '@' + 'd6c7fe72fcce9ddbd7429fbb2373539b26cc2054',
 
diff --git a/commits.json b/commits.json
index 193af7a..d56ec36 100644
--- a/commits.json
+++ b/commits.json
@@ -1,5 +1,5 @@
 {
-  "engine/src/flutter":"60ed067dd8cbe7c5300b0d3f768d75e3e2a0db23",
+  "engine/src/flutter":"f008c51792983708796cff74f06649f797a465c7",
   "engine/src/flutter/third_party/dart":"d6c7fe72fcce9ddbd7429fbb2373539b26cc2054",
   "flutter":"5afa7dd8e2ead937ac47b327c7cf08403430393c"
 }
\ No newline at end of file