| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <style> | 4 <style> |
| 5 .hitregion { | 5 .hitregion { |
| 6 width: 100px; | 6 width: 100px; |
| 7 height: 100px; | 7 height: 100px; |
| 8 background-color: green; | 8 background-color: green; |
| 9 } | 9 } |
| 10 .hitregion:after { | 10 .hitregion:after { |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 </head> | 22 </head> |
| 23 <body> | 23 <body> |
| 24 <!-- | 24 <!-- |
| 25 REGRESSION: :hover doesn't work on :after content with borders or outlines. | 25 REGRESSION: :hover doesn't work on :after content with borders or outlines. |
| 26 To test this bug outside DRT, hover on the square below. | 26 To test this bug outside DRT, hover on the square below. |
| 27 This test passes if there are two green squares. | 27 This test passes if there are two green squares. |
| 28 --> | 28 --> |
| 29 <div class="hitregion"></div> | 29 <div class="hitregion"></div> |
| 30 </body> | 30 </body> |
| 31 </html> | 31 </html> |
| OLD | NEW |