summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/editing/other/paste-in-list-with-inline-style.tentative.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/editing/other/paste-in-list-with-inline-style.tentative.html')
-rw-r--r--testing/web-platform/tests/editing/other/paste-in-list-with-inline-style.tentative.html30
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/web-platform/tests/editing/other/paste-in-list-with-inline-style.tentative.html b/testing/web-platform/tests/editing/other/paste-in-list-with-inline-style.tentative.html
new file mode 100644
index 0000000000..97710e805d
--- /dev/null
+++ b/testing/web-platform/tests/editing/other/paste-in-list-with-inline-style.tentative.html
@@ -0,0 +1,30 @@
+<!doctype html>
+<meta charset=utf-8>
+<title>This tests for a bug in ReplaceSelectionCommand where styles are lost during paste.</title>
+<script src=/resources/testharness.js></script>
+<script src=/resources/testharnessreport.js></script>
+<span id="copy" style="font-weight: bold;">copy this</span>
+<div id="paste" contenteditable="true"> <ul><li id="list1"></li></ul></div>
+<div id="log"></div>
+<script>
+"use strict";
+
+setup({explicit_done: true});
+
+function runTests() {
+ test(function() {
+ var selection = window.getSelection();
+ selection.selectAllChildren(document.getElementById('copy'));
+ document.execCommand('Copy');
+ var sample = document.getElementById('list1');
+ selection.collapse(sample);
+ document.execCommand('Paste');
+
+ assert_equals(sample.innerHTML, '<span style="font-weight: 700;">copy this</span>');
+ assert_true(selection.isCollapsed);
+ }, "");
+ done();
+}
+
+window.addEventListener("load", runTests, {once: true});
+</script>