mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 1699258 - Add reported crashtest to WPT r=m_kato
Making `white-space` handling better in editor (bug 1724650) fixed the reported crashtest case. Therefore, this patch only adds it into WPT. Depends on D125640 Differential Revision: https://phabricator.services.mozilla.com/D125641
This commit is contained in:
parent
a3ca1fabc9
commit
c508b0746a
@ -0,0 +1,25 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<style>
|
||||
* {
|
||||
white-space: pre
|
||||
}
|
||||
</style>
|
||||
<script>
|
||||
document.addEventListener('DOMContentLoaded', () => {
|
||||
const quote_0 = document.getElementById('id_0')
|
||||
const quote_1 = document.createElement('blockquote')
|
||||
const fieldset_1 = document.createElement('fieldset')
|
||||
quote_1.appendChild(fieldset_1)
|
||||
document.documentElement.appendChild(quote_1)
|
||||
const selection = self.getSelection()
|
||||
selection.collapse(fieldset_1, 0)
|
||||
quote_0.contentEditable = false
|
||||
document.documentElement.contentEditable = true
|
||||
document.execCommand('insertHorizontalRule', false, null)
|
||||
})
|
||||
</script>
|
||||
</head>
|
||||
<blockquote id='id_0'></blockquote>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user