Zeke Lu

Results 16 issues of Zeke Lu

The number of return values of `css.GetMatchedStylesForNode` changed twice, which breaks `chromedp.MatchedStyle` twice. (See #1031, #1121). We can call `cdp.Execute` directly to avoid this issue. Fixes #1126.

#### What versions are you running? ```console $ go list -m github.com/chromedp/chromedp v0.8.2 $ google-chrome --version chromedp/headless-shell:103.0.5060.114 $ go version go version go1.18.3 linux/amd64 ``` #### What did you do?...

For #1073 The test is expected to fail before `chromedp/headless-shell:latest` is updated.

For #401 This PR implements `Transport` with a pipe connection. **Notes**: 1. pipe connection is not supported on windows yet (see https://github.com/golang/go/issues/21085) 2. it will use pipe connection by default...

#### Background This was suggested by @kenshaw in a private talk. The purpose is to make it easy for new comers. As of now, we dedicated the first question in...

The spec https://refspecs.linuxfoundation.org/elf/gabi4+/ch4.eheader.html states: 1. e_shnum: If the number of sections is greater than or equal to SHN_LORESERVE (0xff00), this member has the value zero and the actual number of...

### What version of Go are you using (`go version`)? $ go version go version go1.19 linux/amd64 ### Does this issue reproduce with the latest release? Yes ### What operating...

compiler/runtime

A SHT_NOBITS section may have a nonzero size, but it occupies no space in the file. The reader to read from this section is zeroReader, which never reaches EOF. In...