Skip to content

Commit

Permalink
docs: add a whitespace for consistent ternary formatting (#36790)
Browse files Browse the repository at this point in the history
docs: add a whitespace for consistent formatting
  • Loading branch information
Sc4ramouche authored Nov 14, 2024
1 parent 870c21b commit 3baeaa5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ The timestamps provided in the {{domxref("PerformanceLongAnimationFrameTiming")}
| Start time | `startTime` |
| End time | `startTime + duration` |
| Work duration | `renderStart ? renderStart - startTime : duration` |
| Render duration | `renderStart ? (startTime + duration) - renderStart: 0` |
| Render duration | `renderStart ? (startTime + duration) - renderStart : 0` |
| Render: Pre-layout duration | `styleAndLayoutStart ? styleAndLayoutStart - renderStart : 0` |
| Render: Style and Layout duration | `styleAndLayoutStart ? (startTime + duration) - styleAndLayoutStart : 0` |

Expand Down

0 comments on commit 3baeaa5

Please sign in to comment.