We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
重现代码 | Code example:
// @TODO: Percentage size of child should not be considered in auto min content width/height. xit("size 003", async () => { let flexbox_9; flexbox_9 = createElement( "div", { class: "flexbox column vertical", style: { display: "flex", "-webkit-flex-direction": "column", "flex-direction": "column", "background-color": "#aaa", position: "relative", height: "50px", "box-sizing": "border-box", }, }, [ createElement("div", { "data-expected-width": "10", "data-offset-x": "20", style: { height: "100%", "background-color": "blue", "box-sizing": "border-box", flex: "1 0 10px", }, }), createElement("div", { "data-expected-width": "10", "data-offset-x": "10", style: { height: "100%", "background-color": "green", "box-sizing": "border-box", width: "10px", }, }), createElement( "div", { "data-expected-width": "10", "data-offset-x": "0", style: { height: "100%", "background-color": "red", "box-sizing": "border-box", }, }, [ createElement("div", { "data-expected-width": "10", "data-offset-x": "0", style: { height: "100%", "box-sizing": "border-box", width: "10px", }, }), ] ), ] ); BODY.appendChild(flexbox_9); await snapshot(); });
预期结果 | Expected results:
实际结果 | Actual results:
The text was updated successfully, but these errors were encountered:
temper357
No branches or pull requests
重现代码 | Code example:
预期结果 | Expected results:
实际结果 | Actual results:
The text was updated successfully, but these errors were encountered: