This group discusses technical browser development issues, not web development.
If you are talking about DOMContentLoaded: 282 ms and Load: 278 ms those times indicate the time it took from the time the page started to be rendered until the load or DOMContentLoaded events.
However, domContentLoadedEventEnd - domContentLoadedEventStart and loadEventEnd - loadEventStart indicate the time it took for the event listeners themselves to finish their work. Say, you added for (var i = 0; i < 99999999; i++) { console.log('1'); } to the load event listener and it took about a second to complete that execution, the result of loadEventEnd - loadEventStart would be around 1000.