This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* SPIDER -- a sample adventure game, by David Matuszek. | |
| Consult this file and issue the command: start. */ | |
| :- dynamic at/2, i_am_at/1, alive/1. /* Needed by SWI-Prolog. */ | |
| :- retractall(at(_, _)), retractall(i_am_at(_)), retractall(alive(_)). | |
| /* This defines my current location. */ | |
| i_am_at(meadow). |
I hereby claim:
- I am damons on github.
- I am sicore (https://keybase.io/sicore) on keybase.
- I have a public key ASADrC5oMznvHkEet_owyPWThK7dsOnm1i-oJrFtvXMZ8go
To claim this, I am signing this object:
A Pen by Damon Sicore on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- web-interactive-terminal --> | |
| <!-- https://github.com/mattConn/web-interactive-terminal --> | |
| <body> | |
| <div id="web-terminal-ctn"> | |
| <div id="web-terminal"></div> | |
| <form id="web-terminal-form"> | |
| <input id="web-terminal-input" type="text" placeholder="$" autocomplete="off" autofocus /> | |
| <input type="submit" /> | |
| </form> | |
| </div> |
Proposed target bug: Bug 1929151 Related bugs: 1993701, 1204850, 1409529
Suggested summary if a new bug is preferred:
Firefox resolves dimensionless SVG <img> to 0x0 inside width:fit-content parent when the img has width:100% and max-width
Suggested Bugzilla comment for Bug 1929151:
This looks like another reduced testcase for the same underlying issue, but affecting `width: fit-content` on the parent instead of `min-width` / `max-content` on the image itself.