| Index: LayoutTests/svg/svg-font-face-leak-document.html
|
| diff --git a/LayoutTests/svg/svg-font-face-leak-document.html b/LayoutTests/svg/svg-font-face-leak-document.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..de9089b536ee4237a5cfbb46e84edaa562f0575c
|
| --- /dev/null
|
| +++ b/LayoutTests/svg/svg-font-face-leak-document.html
|
| @@ -0,0 +1,23 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| +<body>
|
| + <script id="targetSVG" type="text/html">
|
| + <svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100" height="100">
|
| + <defs>
|
| + <font>
|
| + <font-face font-family="Foo" />
|
| + </font>
|
| + </defs>
|
| + </svg>
|
| + </script>
|
| +
|
| + <script src="../resources/js-test.js"></script>
|
| + <script src="../resources/leak-check.js"></script>
|
| + <script>
|
| + var target = grabScriptText('targetSVG');
|
| + var tolerance = {'numberOfLiveDocuments': 0};
|
| +
|
| + doLeakTest(htmlToUrl(target), tolerance);
|
| + </script>
|
| +</body>
|
| +</html>
|
|
|