Index: third_party/WebKit/LayoutTests/fast/css/fontfaceset-set-operations-expected.txt |
diff --git a/third_party/WebKit/LayoutTests/fast/css/fontfaceset-set-operations-expected.txt b/third_party/WebKit/LayoutTests/fast/css/fontfaceset-set-operations-expected.txt |
index 6c613bd3b7f3302ab698feba13f6fb05edd3ac9e..831dfc459aee554fe1cec60f06bfd9cbce09ba5e 100644 |
--- a/third_party/WebKit/LayoutTests/fast/css/fontfaceset-set-operations-expected.txt |
+++ b/third_party/WebKit/LayoutTests/fast/css/fontfaceset-set-operations-expected.txt |
@@ -43,8 +43,13 @@ PASS faces[2].family is "Font3" |
PASS document.fonts.has(faces[0]) is true |
PASS document.fonts.has(faces[1]) is true |
PASS document.fonts.has(faces[2]) is true |
+PASS document.fonts.has(null) threw exception TypeError: Failed to execute 'has' on 'FontFaceSet': parameter 1 is not of type 'FontFace'.. |
+PASS document.fonts.has("Font1") threw exception TypeError: Failed to execute 'has' on 'FontFaceSet': parameter 1 is not of type 'FontFace'.. |
+PASS document.fonts.add(null) threw exception TypeError: Failed to execute 'add' on 'FontFaceSet': parameter 1 is not of type 'FontFace'.. |
+PASS document.fonts.add("Font1") threw exception TypeError: Failed to execute 'add' on 'FontFaceSet': parameter 1 is not of type 'FontFace'.. |
+PASS document.fonts.delete(null) threw exception TypeError: Failed to execute 'delete' on 'FontFaceSet': parameter 1 is not of type 'FontFace'.. |
+PASS document.fonts.delete("Font1") threw exception TypeError: Failed to execute 'delete' on 'FontFaceSet': parameter 1 is not of type 'FontFace'.. |
PASS document.fonts.has(nonCssConnectedFace) is false |
-PASS document.fonts.has("Font1") threw exception TypeError: Failed to execute 'has' on 'FontFaceSet': The argument is not a FontFace.. |
PASS document.fonts.add(faces[0]) did not throw exception. |
PASS document.fonts.size is 3 |
PASS document.fonts.delete(faces[0]) is false |