In https://tex.stackexchange.com/a/382726/240454, the author claims that the background of tikzpictures are transparent by default.
In this MWE, for me, using either pdflatex or xelatex, I remain with a white background. Is there a problem with my installation?
\documentclass[crop,multi=tikzpicture,varwidth=false,border=1cm]{standalone}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
\draw[red,line width=1mm,fill=blue] (-1,-1) -- (-1,1) -- (1,1) -- cycle;
\end{tikzpicture}
\end{document}
Compiled using
xelatex.exe -synctex=1 -interaction=nonstopmode "test".tex
The result is then, after exporting the pdf as png using Adobe Acrobat Pro DC:

