Skip to content

Commit

Permalink
Add visited external styles to test isolation to the manual-test html
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayRys committed May 29, 2023
1 parent abd3958 commit 67e0986
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion test/files/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,16 @@

<!-- Test styles isolation -->
<style>
a:visited {
color: #0060a0;
border-bottom-color: rgba(0, 96, 160, 0.15);
transition-property: border-bottom,border-color,background,color,fill;
transition-duration: .2s;
transition-timing-function: ease-out;
}

a:hover, a:focus, a:active {
color: #a03000
color: #a03000;
border-color: rgba(160, 48, 0, 0.2);
transition: none;
}
Expand Down

0 comments on commit 67e0986

Please sign in to comment.