Nothing Special   »   [go: up one dir, main page]

Skip to content

Commit

Permalink
Add test file to validate merge lines behavior.
Browse files Browse the repository at this point in the history
  • Loading branch information
sanketj committed Jul 2, 2024
1 parent 97de0d8 commit d8d08f2
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions merge-lines.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
<style>
.divStyle {
display: block;
unicode-bidi: isolate;
}

.h1Style {
display: block;
font-size: 2em;
margin-block-start: 0.67em;
margin-block-end: 0.67em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
unicode-bidi: isolate;
}
</style>
<div contenteditable="true">
<div>abc</div>
<div style="text-decoration: underline;">def</div>

<br>

<span class="divStyle">abc</span>
<span class="divStyle" style="text-decoration: underline;">def</span>

<br>

<h1>abc</h1>
<h1 style="text-decoration: underline;">def</h1>

<br>

<div class="h1Style">abc</div>
<div class="h1Style" style="text-decoration: underline;">def</div>

<br>

<span class="h1Style">abc</span>
<span class="h1Style" style="text-decoration: underline;">def</span>
</div>

0 comments on commit d8d08f2

Please sign in to comment.