1
0
Fork 0
firefox/layout/style/test/gtest/generate_example_stylesheet.py
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
519 B
Python

def main(output, stylesheet):
css = open(stylesheet, "r").read()
css = (
css.replace("\\", "\\\\")
.replace("\r", "\\r")
.replace("\n", "\\n")
.replace('"', '\\"')
)
# Work around "error C2026: string too big"
# https://msdn.microsoft.com/en-us/library/dddywwsc.aspx
chunk_size = 10000
chunks = ('"%s"' % css[i : i + chunk_size] for i in range(0, len(css), chunk_size))
header = "#define EXAMPLE_STYLESHEET " + " ".join(chunks)
output.write(header)