diff --git a/test/intl402/ListFormat/prototype/resolvedOptions/order.js b/test/intl402/ListFormat/prototype/resolvedOptions/order.js
new file mode 100644
index 0000000000000000000000000000000000000000..13429cf314803ab289e508cba955eadf683e7905
--- /dev/null
+++ b/test/intl402/ListFormat/prototype/resolvedOptions/order.js
@@ -0,0 +1,19 @@
+// Copyright 2018 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-Intl.ListFormat.prototype.resolvedOptions
+description: Verifies the property order for the object returned by resolvedOptions().
+includes: [compareArray.js]
+features: [Intl.ListFormat]
+---*/
+
+const options = new Intl.ListFormat().resolvedOptions();
+
+const expected = [
+  "locale",
+  "type",
+  "style",
+];
+
+assert.compareArray(Object.getOwnPropertyNames(options), expected);