Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: third_party/WebKit/LayoutTests/fast/css/fontfaceset-set-operations-expected.txt

Issue 1481983002: Drop [LegacyInterfaceTypeChecking] where trivial in core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more tests Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698