| Index: third_party/WebKit/LayoutTests/external/wpt/css-font-loading/fontfacesetloadevent-constructor.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/css/fontfacesetloadevent-constructor.html b/third_party/WebKit/LayoutTests/external/wpt/css-font-loading/fontfacesetloadevent-constructor.html
|
| similarity index 50%
|
| rename from third_party/WebKit/LayoutTests/fast/css/fontfacesetloadevent-constructor.html
|
| rename to third_party/WebKit/LayoutTests/external/wpt/css-font-loading/fontfacesetloadevent-constructor.html
|
| index 940d601c4c3b4011391260aa5a351c80b39a53f2..d5038ce690c6df5f8eb6f2d0266df052f7200fc5 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/css/fontfacesetloadevent-constructor.html
|
| +++ b/third_party/WebKit/LayoutTests/external/wpt/css-font-loading/fontfacesetloadevent-constructor.html
|
| @@ -1,19 +1,20 @@
|
| <!DOCTYPE html>
|
| -<title>FontFaceSetLoadEvent Constructor</title>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| +<title>FontFaceSetLoadEvent constructor</title>
|
| +<link rel="help" href="https://drafts.csswg.org/css-font-loading/#fontfacesetloadevent">
|
| +<script src="/resources/testharness.js"></script>
|
| +<script src="/resources/testharnessreport.js"></script>
|
| <script>
|
| test(function() {
|
| var ff = [];
|
| var e = new FontFaceSetLoadEvent('type');
|
| assert_array_equals(e.fontfaces, ff);
|
| assert_not_equals(e.fontfaces, ff);
|
| - }, 'Test FontFaceSetLoadEvent constructor without FontFaceSetLoadEventInit dictionary');
|
| + }, 'FontFaceSetLoadEvent constructor without FontFaceSetLoadEventInit dictionary');
|
|
|
| test(function() {
|
| var ff = [ new FontFace('family', 'src') ];
|
| var e = new FontFaceSetLoadEvent('type', { fontfaces: ff });
|
| assert_array_equals(e.fontfaces, ff);
|
| assert_not_equals(e.fontfaces, ff);
|
| - }, 'Test FontFaceSetLoadEvent constructor with FontFaceSetLoadEventInit dictionary');
|
| + }, 'FontFaceSetLoadEvent constructor with FontFaceSetLoadEventInit dictionary');
|
| </script>
|
|
|