diff --git a/test/manual/2264/iframe.html b/test/manual/2264/iframe.html deleted file mode 100644 index be08c038..00000000 --- a/test/manual/2264/iframe.html +++ /dev/null @@ -1,35 +0,0 @@ - - -
- - - - - - - - - - diff --git a/test/manual/2264/iframe.js b/test/manual/2264/iframe.js deleted file mode 100644 index 7b52a3cf..00000000 --- a/test/manual/2264/iframe.js +++ /dev/null @@ -1,22 +0,0 @@ -const init = () => { - loadEditor(function () { - // create the editor - const target = document.getElementById('container'); - const editor = monaco.editor.create(target, { language: 'html' }); - - // load some sample data - (async () => { - const response = await fetch('https://microsoft.github.io/monaco-editor/'); - const html = await response.text(); - editor.getModel().setValue(html); - })(); - }); -}; - -window.addEventListener('DOMContentLoaded', () => { - if (!window.innerWidth || !window.innerHeight) { - window.addEventListener('resize', init, { once: true }); - } else { - init(); - } -}); diff --git a/test/manual/2264/index.html b/test/manual/2264/index.html deleted file mode 100644 index 8479a90a..00000000 --- a/test/manual/2264/index.html +++ /dev/null @@ -1,11 +0,0 @@ - - - - - - - diff --git a/test/manual/colorize.html b/test/manual/colorize.html deleted file mode 100644 index f4780cb2..00000000 --- a/test/manual/colorize.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - -
-/* Some example CSS */
-
-@import url("something.css");
-
-body {
- margin: 0;
- padding: 3em 6em;
- font-family: tahoma, arial, sans-serif;
- color: #000;
-}
-
-#navigation a {
- font-weight: bold;
- text-decoration: none !important;
-}
-
-h1 {
- font-size: 2.5em;
-}
-
-h2 {
- font-size: 1.7em;
-}
-
-h1:before, h2:before {
- content: "some contents";
-}
-
-code {
- font-family: courier, monospace;
- font-size: 80%;
- color: #418A8A;
-}
-
-
-
-
-
-
-
diff --git a/test/manual/index.html b/test/manual/index.html
index a44deae9..150f25a5 100644
--- a/test/manual/index.html
+++ b/test/manual/index.html
@@ -6,21 +6,16 @@
Jump to:
- [PLAYGROUND]
- |
- [fixed element]
- |
- [scrollable body]
- |
- [scrollable element]