Skip to content

Instantly share code, notes, and snippets.

@tomsontom
tomsontom / MySwitch.java
Last active October 19, 2022 21:41
Java-19 Switch / Source Compat Problem
package blo;
public class MySwitch {
public interface NamedItem {
public String name();
}
public static class MyTypeA /* implements NamedItem*/ {
private final String value;
@tomsontom
tomsontom / dialog.html
Last active April 3, 2024 10:55
Scrollbars inside Dialogs remove focus
<html>
<head>
<title>Overflow Page vs Overflow Dialog</title>
<style>
.scroll-container {
max-height: 200px;
max-width: 200px;
min-width: 200px;
padding: 10px;
background-color: red;