We’re tracking our efforts in this Google Doc.
Chat to Anselm
| /* | |
| * Clearfix for modern browsers | |
| * 1. The space content is one way to avoid an Opera bug when the | |
| * `contenteditable` attribute is included anywhere else in the document. | |
| * Otherwise it causes space to appear at the top and bottom of elements | |
| * that receive the `clearfix` class. | |
| * 2. The use of `table` rather than `block` is only necessary if using | |
| * `:before` to contain the top-margins of child elements. | |
| */ |
| // ---- | |
| // Sass (v3.3.14) | |
| // Compass (v1.0.0) | |
| // ---- | |
| $map: | |
| ('a', 'b'); | |
| .class { | |
| content: $map; |
| // ---- | |
| // Sass (v3.3.14) | |
| // Compass (v1.0.0) | |
| // ---- | |
| $map: | |
| ('a', 'b'); | |
| // Expected output: ('a', 'b') | |
| // Actual output: "a", "b" |
| <div class="selector"> | |
| Hello World. Should be black | |
| <p class="test"> | |
| This should be black. | |
| </p> | |
| </div> | |
| <div class="selector test"> |
| { | |
| "devDependencies": { | |
| "del": "^1.2.0", | |
| "recursive-copy": "^1.0.10" | |
| }, | |
| "scripts": { | |
| "copy": "node task.copy.js", | |
| } | |
| } |
This is a test markdown file with a link and some strong and italic text.
I hereby claim:
To claim this, I am signing this object:
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout. This is also called reflow or layout thrashing, and is common performance bottleneck.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParentelem.clientLeft, elem.clientTop, elem.clientWidth, elem.clientHeightelem.getClientRects(), elem.getBoundingClientRect()