Specification test cases
The test cases below are imported from the Turbo CSS specification.
They have been executed upon loading this page.
Change the text color to black if any of the element's ancestors are hovered.
t1 hover:/../color-black
:hover .t1.hover\:\/\.\.\/color-black {
color: #000000;
}
Change the text color to black if element's grand-grand-parent or any of its ancestors are hovered.
t1 hover:/../../../color-black
:hover * * .t1.hover\:\/\.\.\/\.\.\/\.\.\/color-black {
color: #000000;
}