diff --git a/implementation-contributed/v8/intl/general/getCanonicalLocales.js b/implementation-contributed/v8/intl/general/getCanonicalLocales.js
index 0df6846ce616e8f83d2feeb3d456637b8180aff1..9bec67f581faafaa325a8f3c6b4ccb510e1cbb90 100644
--- a/implementation-contributed/v8/intl/general/getCanonicalLocales.js
+++ b/implementation-contributed/v8/intl/general/getCanonicalLocales.js
@@ -10,4 +10,6 @@ assertDoesNotThrow(() => Intl.getCanonicalLocales("en-a-ca-Chinese-u-ca-Chinese"
 
 // Check duplicate subtags (after the first tag) are detected.
 assertThrows(() => Intl.getCanonicalLocales("en-foobar-foobar"), RangeError);
-assertThrows(() => Intl.getCanonicalLocales("en-u-ca-gregory-ca-chinese"), RangeError);
+
+// Duplicate subtags are valid as per the ECMA262 spec.
+assertDoesNotThrow(() => Intl.getCanonicalLocales("en-u-ca-gregory-ca-chinese"));
diff --git a/implementation-contributed/v8/mjsunit/regress/regress-crbug-888825.js b/implementation-contributed/v8/mjsunit/regress/regress-crbug-888825.js
new file mode 100644
index 0000000000000000000000000000000000000000..9aa52d62e1de9164b470ec7d22caf69dd77140e6
--- /dev/null
+++ b/implementation-contributed/v8/mjsunit/regress/regress-crbug-888825.js
@@ -0,0 +1,5 @@
+// Copyright 2018 the V8 project authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+eval("((a=function g() { function g() {}}) => {})();");
diff --git a/implementation-contributed/v8/test262/test262.status b/implementation-contributed/v8/test262/test262.status
index f0a57efb3544347b7ef966043b9309ee99016dfb..a2cc51b1eaee76f41feee47902113e711d38e2ca 100644
--- a/implementation-contributed/v8/test262/test262.status
+++ b/implementation-contributed/v8/test262/test262.status
@@ -586,7 +586,6 @@
   'intl402/Locale/constructor-parse-twice': [FAIL],
   'intl402/Locale/constructor-tag': [FAIL],
   'intl402/Locale/constructor-unicode-ext-invalid': [FAIL],
-  'intl402/Locale/constructor-unicode-ext-valid': [FAIL],
   'intl402/Locale/extensions-grandfathered': [FAIL],
   'intl402/Locale/extensions-private': [FAIL],
   'intl402/Locale/getters': [FAIL],
@@ -608,9 +607,6 @@
   'language/expressions/async-generator/generator-created-after-decl-inst': [FAIL],
   'language/statements/async-generator/generator-created-after-decl-inst': [FAIL],
 
-  # https://bugs.chromium.org/p/chromium/issues/detail?id=865351
-  'intl402/DateTimeFormat/prototype/formatToParts/main': [FAIL],
-
   # https://bugs.chromium.org/p/v8/issues/detail?id=8099
   'intl402/NumberFormat/prototype/format/format-negative-numbers': [FAIL],