diff --git a/!NetSurf/!Run,feb b/!NetSurf/!Run,feb index 5f5305680..1629c42a2 100644 --- a/!NetSurf/!Run,feb +++ b/!NetSurf/!Run,feb @@ -95,5 +95,12 @@ Unset Alias$NetSurfRMLoad CDir .WWW CDir .WWW.NetSurf +| Install NetSurf-specific fonts +| NB: trailing dot is required +FontInstall NetSurf:Resources.Fonts. + WimpSlot -min 2240k -max 2240k -Run .!RunImage %*0 2>.WWW.NetSurf.Log \ No newline at end of file +Run .!RunImage %*0 2>.WWW.NetSurf.Log + +| Uninstall NetSurf-specific fonts +FontRemove NetSurf:Resources.Fonts. \ No newline at end of file diff --git a/!NetSurf/Resources/Fonts/NSSymbol/Encoding b/!NetSurf/Resources/Fonts/NSSymbol/Encoding new file mode 100644 index 000000000..c92dad17a --- /dev/null +++ b/!NetSurf/Resources/Fonts/NSSymbol/Encoding @@ -0,0 +1,39 @@ +% Encoding vector for NSSymbol + +% Codes 0-31 +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef +/.notdef + +% Codes 32-33 +/H18543 +/circle diff --git a/!NetSurf/Resources/Fonts/NSSymbol/IntMetrics,ff6 b/!NetSurf/Resources/Fonts/NSSymbol/IntMetrics,ff6 new file mode 100644 index 000000000..4dcbc625d Binary files /dev/null and b/!NetSurf/Resources/Fonts/NSSymbol/IntMetrics,ff6 differ diff --git a/!NetSurf/Resources/Fonts/NSSymbol/Outlines,ff6 b/!NetSurf/Resources/Fonts/NSSymbol/Outlines,ff6 new file mode 100644 index 000000000..d2e624132 Binary files /dev/null and b/!NetSurf/Resources/Fonts/NSSymbol/Outlines,ff6 differ diff --git a/render/box_construct.c b/render/box_construct.c index 2e59d1912..9006e9ecc 100644 --- a/render/box_construct.c +++ b/render/box_construct.c @@ -426,13 +426,13 @@ bool box_construct_element(xmlNode *n, struct content *content, marker->length = 3; break; case CSS_LIST_STYLE_TYPE_CIRCLE: - /* 2742 CIRCLED OPEN CENTRE EIGHT POINTED STAR*/ - marker->text = "\342\235\202"; + /* 25CB WHITE CIRCLE */ + marker->text = "\342\227\213"; marker->length = 3; break; case CSS_LIST_STYLE_TYPE_SQUARE: - /* 25A0 BLACK SQUARE */ - marker->text = "\342\226\240"; + /* 25AA BLACK SMALL SQUARE */ + marker->text = "\342\226\252"; marker->length = 3; break; case CSS_LIST_STYLE_TYPE_DECIMAL: